]> git.zerfleddert.de Git - usb-driver/blob - Makefile
add lib32 target to build a 32 bit library on 64 bit systems
[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 MARCH := $(shell uname -m)
6 ifeq ($(MARCH),x86_64)
7 CFLAGS += -m64
8 else
9 CFLAGS += -m32
10 endif
11
12 FTDI := $(shell libftdi-config --libs 2>/dev/null)
13 ifneq ($(FTDI),)
14 JTAGKEYSRC = jtagkey.c
15 CFLAGS += -DJTAGKEY
16 endif
17
18 SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
19
20 all: $(SOBJECTS)
21 ifeq ($(MARCH),x86_64)
22 @echo Built library is 64 bit. Run \`make lib32\' to build a 32 bit version
23 endif
24
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
26 $(CC) $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared
27
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
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
33
34 clean:
35 rm -f $(SOBJECTS)
36
37 .PHONY: clean all
Impressum, Datenschutz