X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/533f4b68ba8ee534ffd2ad5009701bfb433b31b8..28e7c3682ecc8082cd0b96c632860320be5cc71b:/Makefile diff --git a/Makefile b/Makefile index 8456d8d..4ef6aba 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,14 @@ CFLAGS=-Wall -xilinx.so: xilinx.c xilinx.h - gcc $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -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