FIX: makeing sure the "make clean" now deletes the nonce2key.exe file.

This commit is contained in:
iceman1001
2016-01-17 23:00:50 +01:00
parent 02b6f355ca
commit 9d1eaa281f
2 changed files with 7 additions and 14 deletions

View File

@@ -5,7 +5,7 @@ LDFLAGS =
OBJS = crypto1.o crapto1.o
HEADERS = crapto1.h
EXES = nonce2key
EXES = nonce2key nonce2key.exe
all: $(OBJS) $(EXES)
@@ -15,8 +15,5 @@ all: $(OBJS) $(EXES)
% : %.c
$(LD) $(LDFLAGS) -o $@ $(OBJS) $<
crypto1test: libnfc $(OBJS)
$(LD) $(LDFLAGS) -o crypto1test crypto1test.c $(OBJS)
clean:
rm -f $(OBJS) $(EXES)