]> git.zerfleddert.de Git - usb-driver/blame - Makefile
README additions for compiling on 64 bit systems by Uwe Bonnes
[usb-driver] / Makefile
CommitLineData
05e1bfcd 1#Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of
2#a Parallel Cable III
adb51cf1
MG
3#Add -DNO_USB_RESET to disable the hard reset of the cable when
4#opening the device
bbc3baea 5CFLAGS=-Wall -fPIC -DUSB_DRIVER_VERSION="\"$(shell stat -c '%y' usb-driver.c |cut -d\. -f1)\"" #-DFORCE_PC3_IDENT -DNO_USB_RESET
2c2119eb 6
69a88eeb
MG
7LIBS=-ldl -lusb -lpthread
8
cbfa0ac6
MG
9SRC=usb-driver.c xpcu.c parport.c config.c jtagmon.c
10HEADER=usb-driver.h xpcu.h parport.h jtagkey.h config.h jtagmon.h
69a88eeb 11
d59d5fb4 12ifeq ($(LIBVER),32)
7517e9fe
MG
13CFLAGS += -m32
14endif
15
19b2e286 16FTDI := $(shell libftdi-config --libs 2>/dev/null)
17ifneq ($(FTDI),)
69a88eeb 18SRC += jtagkey.c
19b2e286 19CFLAGS += -DJTAGKEY
69a88eeb 20LIBS += $(FTDI)
19b2e286 21endif
22
05e1bfcd 23SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
cdc9c5bf 24
25all: $(SOBJECTS)
d59d5fb4 26 @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 27
69a88eeb
MG
28libusb-driver.so: $(SRC) $(HEADER) Makefile
29 $(CC) $(CFLAGS) $(SRC) -o $@ $(LIBS) -shared
cdc9c5bf 30
69a88eeb
MG
31libusb-driver-DEBUG.so: $(SRC) $(HEADER) Makefile
32 $(CC) -DDEBUG $(CFLAGS) $(SRC) -o $@ $(LIBS) -shared
7517e9fe
MG
33
34lib32:
d59d5fb4 35 $(MAKE) LIBVER=32 clean all
cdc711dc 36
37clean:
cdc9c5bf 38 rm -f $(SOBJECTS)
2c0c1255 39
69a88eeb 40.PHONY: clean all lib32
Impressum, Datenschutz