]> git.zerfleddert.de Git - usb-driver/blob - Makefile
preliminary support for amontec jtagkey.
[usb-driver] / Makefile
1 #Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of
2 #a Parallel Cable III
3 CFLAGS=-Wall -fPIC #-DFORCE_PC3_IDENT
4
5 FTDI := $(shell libftdi-config --libs 2>/dev/null)
6 ifneq ($(FTDI),)
7 JTAGKEYSRC = jtagkey.c
8 CFLAGS += -DJTAGKEY
9 endif
10
11 SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
12
13 all: $(SOBJECTS)
14
15 libusb-driver.so: usb-driver.c jtagkey.c usb-driver.h jtagkey.h Makefile
16 gcc $(CFLAGS) usb-driver.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared
17
18 libusb-driver-DEBUG.so: usb-driver.c jtagkey.c usb-driver.h jtagkey.h Makefile
19 gcc -DDEBUG $(CFLAGS) usb-driver.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared
20
21 clean:
22 rm -f $(SOBJECTS)
23
24 .PHONY: clean all
Impressum, Datenschutz