X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/7216ce6cb7163f83893a7dd01315a139a3993dba..05e1bfcd05798d1ea1a946f4d4eb73e08ac28865:/Makefile diff --git a/Makefile b/Makefile index 4ef6aba..1ce1b06 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,18 @@ -CFLAGS=-Wall +#Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of +#a Parallel Cable III +CFLAGS=-Wall -fPIC #-DFORCE_PC3_IDENT -all: libusb-driver.so libusb-driver-DEBUG.so +SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so -libusb-driver.so: usb-driver.c usb-driver.h - gcc -fPIC $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared +all: $(SOBJECTS) -libusb-driver-DEBUG.so: usb-driver.c usb-driver.h - gcc -fPIC -DDEBUG $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared +libusb-driver.so: usb-driver.c usb-driver.h Makefile + gcc $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared + +libusb-driver-DEBUG.so: usb-driver.c usb-driver.h Makefile + gcc -DDEBUG $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared clean: - rm -f libusb-driver.so libusb-driver-DEBUG.so + rm -f $(SOBJECTS) .PHONY: clean all