-CFLAGS=-Wall
+CFLAGS=-Wall -fPIC
-all: libusb-driver.so libusb-driver-DEBUG.so
+SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so libusb-driver-trenz.so
+
+all: $(SOBJECTS)
libusb-driver.so: usb-driver.c usb-driver.h
- gcc -fPIC $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared
+ 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 -fPIC -DDEBUG $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared
+ gcc -DDEBUG $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared
clean:
- rm -f libusb-driver.so libusb-driver-DEBUG.so
+ rm -f $(SOBJECTS)
.PHONY: clean all