]> git.zerfleddert.de Git - usb-driver/blame - Makefile
some cleanups
[usb-driver] / Makefile
CommitLineData
05e1bfcd 1#Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of
2#a Parallel Cable III
3CFLAGS=-Wall -fPIC #-DFORCE_PC3_IDENT
2c2119eb 4
19b2e286 5FTDI := $(shell libftdi-config --libs 2>/dev/null)
6ifneq ($(FTDI),)
7JTAGKEYSRC = jtagkey.c
8CFLAGS += -DJTAGKEY
9endif
10
05e1bfcd 11SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
cdc9c5bf 12
13all: $(SOBJECTS)
7216ce6c 14
19b2e286 15libusb-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
cdc9c5bf 17
19b2e286 18libusb-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
cdc711dc 20
21clean:
cdc9c5bf 22 rm -f $(SOBJECTS)
2c0c1255 23
7216ce6c 24.PHONY: clean all
Impressum, Datenschutz