X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/cdc711dc0a482c5cd0bc6dee34c930403c75cee1..cdc9c5bf0932e07ed1a19bd7315bad79a2a41b4c:/Makefile diff --git a/Makefile b/Makefile index 784b1ac..3325a89 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,19 @@ -xilinx.so: xilinx.c - gcc $< -o $@ -ldl -shared +CFLAGS=-Wall -fPIC + +SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so libusb-driver-trenz.so + +all: $(SOBJECTS) + +libusb-driver.so: usb-driver.c usb-driver.h + gcc $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared + +libusb-driver-trenz.so: usb-driver.c usb-driver.h + gcc -DTRENZ $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared + +libusb-driver-DEBUG.so: usb-driver.c usb-driver.h + gcc -DDEBUG $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared clean: - rm -f xilinx.so + rm -f $(SOBJECTS) + +.PHONY: clean all