Makefiles: remove spurious spaces/tabs

This commit is contained in:
Philippe Teuwen 2019-03-10 11:35:03 +01:00
commit 2f12e57408
13 changed files with 85 additions and 85 deletions

View file

@ -8,12 +8,12 @@ get_crapto1:
get_nonce_bf:
# git clone https://github.com/J-Run/mf_key_brute.git mf_key_brute
git clone https://github.com/iceman1001/mf_nonce_brute mf_nonce_brute
git clone https://github.com/iceman1001/mf_nonce_brute mf_nonce_brute
get_xorsearch:
mkdir xorsearch
mkdir xorsearch
wget -N https://didierstevens.com/files/software/XORSearch_V1_11_2.zip
# Mingw
# Mingw
# unzzip-big XORSearch_V1_11_2.zip
# linux
# gunzip XORSearch_V1_11_2.zip

View file

@ -7,7 +7,7 @@ OBJS = crapto1.o crypto1.o
HEADERS = crapto1.h
EXES = mfkey64 mfkey32 mfkey32v2
WINEXE = $(patsubst %, %.exe, $(EXES))
all: $(OBJS) $(EXES)
%.o : %.c
@ -16,6 +16,6 @@ all: $(OBJS) $(EXES)
% : %.c
$(LD) $(CFLAGS) -o $@ $(OBJS) $<
clean:
clean:
rm -f $(OBJS) $(EXES) $(WINEXE)

View file

@ -16,5 +16,5 @@ all: $(OBJS) $(EXES)
% : %.c
$(LD) $(LDFLAGS) -o $@ $(OBJS) $<
clean:
clean:
rm -f $(OBJS) $(EXES) $(WINEXES)