X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/da3ba95aeee227cd7d1e805c4d55776ca6363ca6..28e7c3682ecc8082cd0b96c632860320be5cc71b:/Makefile diff --git a/Makefile b/Makefile index 59bf33c..4ef6aba 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,14 @@ -xilinx.so: xilinx.c xilinx.h - gcc $< -o $@ -ldl -shared +CFLAGS=-Wall + +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