X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/2c0c12554ebcd58eb3f1fbf2fa322588ec6ce259..8121bc50c29cae60e7ea5b5be5cbafffb8ba3563:/Makefile diff --git a/Makefile b/Makefile index 250e2f6..1ce1b06 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +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 -libusb-driver.so: usb-driver.c usb-driver.h +SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so + +all: $(SOBJECTS) + +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 + rm -f $(SOBJECTS) -.PHONY: clean +.PHONY: clean all