From cf4cccb614340081eb690ca19676477794ee5b9c Mon Sep 17 00:00:00 2001 From: laforge Date: Sat, 29 Oct 2005 20:42:34 +0000 Subject: Add support for native CCID driver, modularize OpenCT support (based on a patch from Werner Koch) git-svn-id: https://svn.gnumonks.org/trunk/librfid@1597 e0336214-984f-0b4b-a45f-81c69e1f0ede --- Makefile | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 326af8c..691c24c 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,26 @@ + CFLAGS:=-Wall -g -I/usr/local/include -Iinclude -LDFLAGS:=-lopenct -lusb +LDFLAGS:= -lusb + +LIBRFID_OBJS=rfid_layer2.o rfid_layer2_iso14443a.o rfid_layer2_iso14443b.o rfid_layer2_iso15693.o rfid_asic_rc632.o rfid_reader_cm5121.o rfid.o rfid_protocol.o rfid_proto_tcl.o rfid_proto_mifare_ul.o rfid_proto_mifare_classic.o rfid_iso14443_common.o rfid_reader.o + +# uncomment this if you want to use OpenCT +LDFLAGS+=-lopenct +LIBRFID_OBJS+=rfid_reader_cm5121_openct.o + +# uncomment this if you want to use our internal CCID driver +#LIBRFID_OBJS+=rfid_reader_cm5121_ccid_direct.o ccid/ccid-driver.o all: openct-escape openct-escape: openct-escape.o librfid.a $(CC) $(LDFLAGS) -o $@ $^ -librfid.a: rfid_layer2.o rfid_layer2_iso14443a.o rfid_layer2_iso14443b.o rfid_layer2_iso15693.o rfid_asic_rc632.o rfid_reader_cm5121.o rfid.o rfid_protocol.o rfid_proto_tcl.o rfid_proto_mifare_ul.o rfid_proto_mifare_classic.o rfid_iso14443_common.o rfid_reader.o +librfid.a: $(LIBRFID_OBJS) ar r $@ $^ %.o: %.c - $(CC) $(CFLAGS) -o $@ -c $^ + $(CC) $(CFLAGS) -DHAVE_LIBUSB -DUSE_INTERNAL_CCID_DRIVER -o $@ -c $^ clean: - rm -f *.o openct-escape + rm -f *.o openct-escape librfid.a -- cgit v1.2.3