diff options
author | laforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede> | 2005-05-29 18:05:31 +0000 |
---|---|---|
committer | laforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede> | 2005-05-29 18:05:31 +0000 |
commit | b0fef13efe84d8601a9496098429b4a080e20c9e (patch) | |
tree | 3439f4cb8ce60a622eb2b372b8c7e92068f2f654 /Makefile |
move librfid to new location in repository
git-svn-id: https://svn.gnumonks.org/trunk/librfid@1181 e0336214-984f-0b4b-a45f-81c69e1f0ede
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bcf5f44 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CFLAGS:=-Wall -g -I/usr/local/include -Iinclude +LDFLAGS:=-lopenct -lusb + +all: openct-escape + +openct-escape: openct-escape.o rfid_layer2.o rfid_layer2_iso14443a.o rfid_layer2_iso14443b.o rfid_asic_rc632.o rfid_reader_cm5121.o rfid.o rfid_protocol.o rfid_proto_tcl.o rfid_iso14443_common.o rfid_reader.o + $(CC) $(LDFLAGS) -o $@ $^ + +%.o: %.c + $(CC) $(CFLAGS) -o $@ -c $^ + +clean: + rm -f *.o openct-escape |