]> git.zerfleddert.de Git - usb-driver/blobdiff - Makefile
rename TRENZ define to FORCE_PC3_IDENT and document how to enable the
[usb-driver] / Makefile
index 8456d8da3da006d87a70d8914d97bfded5fa4d3b..1ce1b06b7aef966bbeb54f08e0c9b940e95a70a0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +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
 
 
-xilinx.so: xilinx.c xilinx.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
 
        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:
 clean:
-       rm -f xilinx.so
+       rm -f $(SOBJECTS)
+
+.PHONY: clean all
Impressum, Datenschutz