CHG: 'lf cotag read' - added the raw output and the repeating byte pattern is 16bytes...
[proxmark3-svn] / tools / nonce2key / Makefile
0 / 20 (  0%)
CommitLineData
1CC = gcc
2LD = gcc
3CFLAGS = -std=c99 -Wall -O3 -c
4LDFLAGS =
5
6OBJS = crypto1.o crapto1.o
7HEADERS = crapto1.h
8EXES = nonce2key
9WINEXES = nonce2key.exe
10
11all: $(OBJS) $(EXES)
12
13%.o : %.c
14 $(CC) $(CFLAGS) -o $@ $<
15
16% : %.c
17 $(LD) $(LDFLAGS) -o $@ $(OBJS) $<
18
19clean:
20 rm -f $(OBJS) $(EXES) $(WINEXES)
Impressum, Datenschutz