summaryrefslogtreecommitdiffstats
path: root/libusb/Makefile
blob: a6a60fc82bc4c543d42caccb2b64e8a40d568108 (plain)
1
2
3
4
5
6
7
8
#include ../config.mk
OBJ=linux.o usb.o descriptors.o error.o

all: ${OBJ}
	${CC} ${CFLAGS} ${LDFLAGS} -fPIC -I . ${OBJ} -shared -o libusb.so

clean:
	-rm -f libusb.so ${OBJ}