X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/b72b86b42ae1c4139170de1fa98748feef11ed89..7216ce6cb7163f83893a7dd01315a139a3993dba:/Makefile diff --git a/Makefile b/Makefile index 250e2f6..4ef6aba 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,14 @@ CFLAGS=-Wall +all: libusb-driver.so libusb-driver-DEBUG.so + libusb-driver.so: usb-driver.c usb-driver.h - gcc $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared + 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 libusb-driver.so + rm -f libusb-driver.so libusb-driver-DEBUG.so -.PHONY: clean +.PHONY: clean all