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