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