]> git.zerfleddert.de Git - usb-driver/blame - Makefile
add lib32 target to build a 32 bit library on 64 bit systems
[usb-driver] / Makefile
CommitLineData
05e1bfcd 1#Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of
2#a Parallel Cable III
81cf3658 3CFLAGS=-Wall -fPIC -DUSB_DRIVER_VERSION="\"$(shell stat -c '%y' usb-driver.c |cut -d\. -f1)\"" #-DFORCE_PC3_IDENT
2c2119eb 4
7517e9fe
MG
5MARCH := $(shell uname -m)
6ifeq ($(MARCH),x86_64)
7CFLAGS += -m64
8else
9CFLAGS += -m32
10endif
11
19b2e286 12FTDI := $(shell libftdi-config --libs 2>/dev/null)
13ifneq ($(FTDI),)
14JTAGKEYSRC = jtagkey.c
15CFLAGS += -DJTAGKEY
16endif
17
05e1bfcd 18SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
cdc9c5bf 19
20all: $(SOBJECTS)
7517e9fe
MG
21ifeq ($(MARCH),x86_64)
22 @echo Built library is 64 bit. Run \`make lib32\' to build a 32 bit version
23endif
7216ce6c 24
0a060ead 25libusb-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 28libusb-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
31lib32:
32 $(MAKE) MARCH=i386 clean all
cdc711dc 33
34clean:
cdc9c5bf 35 rm -f $(SOBJECTS)
2c0c1255 36
7216ce6c 37.PHONY: clean all
Impressum, Datenschutz