]> git.zerfleddert.de Git - usb-driver/blobdiff - Makefile
parallel cable transfer cleanup
[usb-driver] / Makefile
index 5413efd85dfaf00e4277a04fb639ac1fd39c940b..4ef6abaddc493bf1a81fda7b43ae5c2a82368458 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,14 @@
 CFLAGS=-Wall
 
-xilinx.so: xilinx.c xilinx.h
-       gcc $(CFLAGS) $< -o $@ -ldl -shared
+all: libusb-driver.so libusb-driver-DEBUG.so
+
+libusb-driver.so: usb-driver.c usb-driver.h
+       gcc -fPIC $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared
+
+libusb-driver-DEBUG.so: usb-driver.c usb-driver.h
+       gcc -fPIC -DDEBUG $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared
 
 clean:
-       rm -f xilinx.so
+       rm -f libusb-driver.so libusb-driver-DEBUG.so
+
+.PHONY: clean all
Impressum, Datenschutz