]> git.zerfleddert.de Git - usb-driver/blame_incremental - Makefile
document lib32 target, add EDK 9.1.02i as working
[usb-driver] / Makefile
... / ...
CommitLineData
1#Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of
2#a Parallel Cable III
3CFLAGS=-Wall -fPIC -DUSB_DRIVER_VERSION="\"$(shell stat -c '%y' usb-driver.c |cut -d\. -f1)\"" #-DFORCE_PC3_IDENT
4
5ifeq ($(LIBVER),32)
6CFLAGS += -m32
7endif
8
9FTDI := $(shell libftdi-config --libs 2>/dev/null)
10ifneq ($(FTDI),)
11JTAGKEYSRC = jtagkey.c
12CFLAGS += -DJTAGKEY
13endif
14
15SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
16
17all: $(SOBJECTS)
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
19
20libusb-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
21 $(CC) $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared
22
23libusb-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
24 $(CC) -DDEBUG $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared
25
26lib32:
27 $(MAKE) LIBVER=32 clean all
28
29clean:
30 rm -f $(SOBJECTS)
31
32.PHONY: clean all
Impressum, Datenschutz