]>
Commit | Line | Data |
---|---|---|
1 | #Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of | |
2 | #a Parallel Cable III | |
3 | #Add -DNO_USB_RESET to disable the hard reset of the cable when | |
4 | #opening the device | |
5 | CFLAGS=-Wall -fPIC -DUSB_DRIVER_VERSION="\"$(shell stat -c '%y' usb-driver.c |cut -d\. -f1)\"" #-DFORCE_PC3_IDENT -DNO_USB_RESET | |
6 | ||
7 | LIBS=-ldl -lusb -lpthread | |
8 | ||
9 | SRC=usb-driver.c xpcu.c parport.c config.c jtagmon.c | |
10 | HEADER=usb-driver.h xpcu.h parport.h jtagkey.h config.h jtagmon.h | |
11 | ||
12 | ifeq ($(LIBVER),32) | |
13 | CFLAGS += -m32 | |
14 | endif | |
15 | ||
16 | FTDI := $(shell libftdi-config --libs 2>/dev/null) | |
17 | ifneq ($(FTDI),) | |
18 | SRC += jtagkey.c | |
19 | CFLAGS += -DJTAGKEY | |
20 | LIBS += $(FTDI) | |
21 | endif | |
22 | ||
23 | SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so | |
24 | ||
25 | all: $(SOBJECTS) | |
26 | @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 | |
27 | ||
28 | libusb-driver.so: $(SRC) $(HEADER) Makefile | |
29 | $(CC) $(CFLAGS) $(SRC) -o $@ $(LIBS) -shared | |
30 | ||
31 | libusb-driver-DEBUG.so: $(SRC) $(HEADER) Makefile | |
32 | $(CC) -DDEBUG $(CFLAGS) $(SRC) -o $@ $(LIBS) -shared | |
33 | ||
34 | lib32: | |
35 | $(MAKE) LIBVER=32 clean all | |
36 | ||
37 | clean: | |
38 | rm -f $(SOBJECTS) | |
39 | ||
40 | .PHONY: clean all lib32 |