1 #Add -DFORCE_PC3_IDENT to CFLAGS to force the identification of
 
   3 #Add -DNO_USB_RESET to disable the hard reset of the cable on
 
   5 CFLAGS=-Wall -fPIC -DUSB_DRIVER_VERSION="\"$(shell stat -c '%y' usb-driver.c |cut -d\. -f1)\"" #-DFORCE_PC3_IDENT -DNO_USB_RESET
 
   7 LIBS=-ldl -lusb -lpthread
 
   9 SRC=usb-driver.c parport.c config.c jtagmon.c
 
  10 HEADER=usb-driver.h parport.h jtagkey.h config.h jtagmon.h
 
  16 FTDI := $(shell libftdi-config --libs 2>/dev/null)
 
  23 SOBJECTS=libusb-driver.so libusb-driver-DEBUG.so
 
  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
 
  28 libusb-driver.so: $(SRC) $(HEADER) Makefile
 
  29         $(CC) $(CFLAGS) $(SRC) -o $@ $(LIBS) -shared
 
  31 libusb-driver-DEBUG.so: $(SRC) $(HEADER) Makefile
 
  32         $(CC) -DDEBUG $(CFLAGS) $(SRC) -o $@ $(LIBS) -shared
 
  35         $(MAKE) LIBVER=32 clean all
 
  40 .PHONY: clean all lib32