X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/de867f502fd3611678d3ed26f69eb6b141f542fc..7779d73c71c248e05574b85f82df4e4f543d522e:/tools/nonce2key/Makefile?ds=inline diff --git a/tools/nonce2key/Makefile b/tools/nonce2key/Makefile deleted file mode 100644 index 9772e13d..00000000 --- a/tools/nonce2key/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -VPATH = ../../common/crapto1 -CC = gcc -LD = gcc -CFLAGS = -I../../common -Wall -O4 -LDFLAGS = - -OBJS = crypto1.o crapto1.o -HEADERS = crapto1.h -EXES = nonce2key -WINEXES = $(patsubst %, %.exe, $(EXES)) - -all: $(OBJS) $(EXES) - -%.o : %.c - $(CC) $(CFLAGS) -c -o $@ $< - -% : %.c $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $< - -clean: - rm -f $(OBJS) $(EXES) $(WINEXES)