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-02-25 00:04:39 +00:00

10 lines
158 B
Makefile

CFLAGS=-Wall
libusb-driver.so: usb-driver.c usb-driver.h
gcc $(CFLAGS) $< -o $@ -ldl -lusb -lpthread -shared
clean:
rm -f libusb-driver.so
.PHONY: clean