You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
478 B

CFLAGS=-Wall -fPIC
18 years ago
SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so libusb-driver-trenz.so
all: $(SOBJECTS)
18 years ago
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 $(SOBJECTS)
18 years ago
.PHONY: clean all