X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/cdc711dc0a482c5cd0bc6dee34c930403c75cee1..21a5b6357077e3aae12a80a740c1c66b39227b81:/Makefile?ds=sidebyside

diff --git a/Makefile b/Makefile
index 784b1ac..1ce1b06 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,18 @@
-xilinx.so: xilinx.c
-	gcc $< -o $@ -ldl -shared
+#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
+
+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 xilinx.so
+	rm -f $(SOBJECTS)
+
+.PHONY: clean all