X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/2c0c12554ebcd58eb3f1fbf2fa322588ec6ce259..28e7c3682ecc8082cd0b96c632860320be5cc71b:/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