1
0
This repository has been archived on 2020-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
2007-03-10 10:51:06 +00:00

15 lines
355 B
Makefile

CFLAGS=-Wall
all: libusb-driver.so libusb-driver-DEBUG.so
libusb-driver.so: usb-driver.c usb-driver.h
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 libusb-driver-DEBUG.so
.PHONY: clean all