X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/838c15a6433b1cf1726aede99fa8dcdc7862473a..f1202c3fa9eb6473c3921ca56d399dee76699650:/tools/nonce2key/Makefile diff --git a/tools/nonce2key/Makefile b/tools/nonce2key/Makefile index bfab6fd8..1119ab76 100644 --- a/tools/nonce2key/Makefile +++ b/tools/nonce2key/Makefile @@ -6,12 +6,12 @@ LDFLAGS = OBJS = crypto1.o crapto1.o HEADERS = crapto1.h EXES = nonce2key -WINEXES = nonce2key.exe +WINEXES = $(patsubst %, %.exe, $(EXES)) all: $(OBJS) $(EXES) %.o : %.c - $(CC) $(CFLAGS) -o $@ $< + $(CC) $(CFLAGS) -c -o $@ $< % : %.c $(LD) $(LDFLAGS) -o $@ $(OBJS) $<