]> git.zerfleddert.de Git - usb-driver/blame - Makefile
work correclty on 64bit systems with 32bit userland
[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
d59d5fb4 5ifeq ($(LIBVER),32)
7517e9fe
MG
6CFLAGS += -m32
7endif
8
19b2e286 9FTDI := $(shell libftdi-config --libs 2>/dev/null)
10ifneq ($(FTDI),)
11JTAGKEYSRC = jtagkey.c
12CFLAGS += -DJTAGKEY
13endif
14
05e1bfcd 15SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
cdc9c5bf 16
17all: $(SOBJECTS)
d59d5fb4 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
7216ce6c 19
0a060ead 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
7517e9fe 21 $(CC) $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared
cdc9c5bf 22
0a060ead 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
7517e9fe
MG
24 $(CC) -DDEBUG $(CFLAGS) usb-driver.c parport.c config.c jtagmon.c $(JTAGKEYSRC) -o $@ -ldl -lusb -lpthread $(FTDI) -shared
25
26lib32:
d59d5fb4 27 $(MAKE) LIBVER=32 clean all
cdc711dc 28
29clean:
cdc9c5bf 30 rm -f $(SOBJECTS)
2c0c1255 31
7216ce6c 32.PHONY: clean all
Impressum, Datenschutz