]>
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 | |
7517e9fe MG |
5 | MARCH := $(shell uname -m) |
6 | ifeq ($(MARCH),x86_64) | |
7 | CFLAGS += -m64 | |
8 | else | |
9 | CFLAGS += -m32 | |
10 | endif | |
11 | ||
19b2e286 | 12 | FTDI := $(shell libftdi-config --libs 2>/dev/null) |
13 | ifneq ($(FTDI),) | |
14 | JTAGKEYSRC = jtagkey.c | |
15 | CFLAGS += -DJTAGKEY | |
16 | endif | |
17 | ||
05e1bfcd | 18 | SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so |
cdc9c5bf | 19 | |
20 | all: $(SOBJECTS) | |
7517e9fe MG |
21 | ifeq ($(MARCH),x86_64) |
22 | @echo Built library is 64 bit. Run \`make lib32\' to build a 32 bit version | |
23 | endif | |
7216ce6c | 24 | |
0a060ead | 25 | 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 | 26 | $(CC) $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared |
cdc9c5bf | 27 | |
0a060ead | 28 | 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 |
29 | $(CC) -DDEBUG $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared |
30 | ||
31 | lib32: | |
32 | $(MAKE) MARCH=i386 clean all | |
cdc711dc | 33 | |
34 | clean: | |
cdc9c5bf | 35 | rm -f $(SOBJECTS) |
2c0c1255 | 36 | |
7216ce6c | 37 | .PHONY: clean all |