X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/cdc9c5bf0932e07ed1a19bd7315bad79a2a41b4c..d0e2002d3acb644380d6250cc73927ce1d698f76:/Makefile diff --git a/Makefile b/Makefile index 3325a89..8f1f94a 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,22 @@ -CFLAGS=-Wall -fPIC +#Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of +#a Parallel Cable III +CFLAGS=-Wall -fPIC #-DFORCE_PC3_IDENT -SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so libusb-driver-trenz.so +FTDI := $(shell libftdi-config --libs 2>/dev/null) +ifneq ($(FTDI),) +JTAGKEYSRC = jtagkey.c +CFLAGS += -DJTAGKEY +endif -all: $(SOBJECTS) +SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so -libusb-driver.so: usb-driver.c usb-driver.h - gcc $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared +all: $(SOBJECTS) -libusb-driver-trenz.so: usb-driver.c usb-driver.h - gcc -DTRENZ $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared +libusb-driver.so: usb-driver.c jtagkey.c usb-driver.h jtagkey.h Makefile + gcc $(CFLAGS) usb-driver.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared -libusb-driver-DEBUG.so: usb-driver.c usb-driver.h - gcc -DDEBUG $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared +libusb-driver-DEBUG.so: usb-driver.c jtagkey.c usb-driver.h jtagkey.h Makefile + gcc -DDEBUG $(CFLAGS) usb-driver.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared clean: rm -f $(SOBJECTS)