X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/2c2119ebab64d22a917a658c82946913c52ff7e4..28e7c3682ecc8082cd0b96c632860320be5cc71b:/Makefile diff --git a/Makefile b/Makefile index 5413efd..4ef6aba 100644 --- 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