]>
Commit | Line | Data |
---|---|---|
05e1bfcd | 1 | #Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of |
2 | #a Parallel Cable III | |
81cf3658 | 3 | CFLAGS=-Wall -fPIC -DUSB_DRIVER_VERSION="\"$(shell stat -c '%y' usb-driver.c |cut -d\. -f1)\"" #-DFORCE_PC3_IDENT |
2c2119eb | 4 | |
d59d5fb4 | 5 | ifeq ($(LIBVER),32) |
7517e9fe MG |
6 | CFLAGS += -m32 |
7 | endif | |
8 | ||
19b2e286 | 9 | FTDI := $(shell libftdi-config --libs 2>/dev/null) |
10 | ifneq ($(FTDI),) | |
11 | JTAGKEYSRC = jtagkey.c | |
12 | CFLAGS += -DJTAGKEY | |
13 | endif | |
14 | ||
05e1bfcd | 15 | SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so |
cdc9c5bf | 16 | |
17 | all: $(SOBJECTS) | |
d59d5fb4 | 18 | @file libusb-driver.so | grep x86-64 >/dev/null && echo Built library is 64 bit. Run \`make lib32\' to build a 32 bit version || true |
7216ce6c | 19 | |
0a060ead | 20 | libusb-driver.so: usb-driver.c parport.c jtagkey.c config.c jtagmon.c usb-driver.h parport.h jtagkey.h config.h jtagmon.h Makefile |
7517e9fe | 21 | $(CC) $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared |
cdc9c5bf | 22 | |
0a060ead | 23 | libusb-driver-DEBUG.so: usb-driver.c parport.c jtagkey.c config.c jtagmon.c usb-driver.h parport.h jtagkey.h config.h jtagmon.h Makefile |
7517e9fe MG |
24 | $(CC) -DDEBUG $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared |
25 | ||
26 | lib32: | |
d59d5fb4 | 27 | $(MAKE) LIBVER=32 clean all |
cdc711dc | 28 | |
29 | clean: | |
cdc9c5bf | 30 | rm -f $(SOBJECTS) |
2c0c1255 | 31 | |
7216ce6c | 32 | .PHONY: clean all |