mirror of
https://github.com/fhgwright/SCSI2SD.git
synced 2025-01-09 19:31:12 +00:00
75f825e6d5
Firmware upgrade and config save/load mostly works. Firmware isn't making use of the new configuration yet.
21 lines
493 B
Makefile
21 lines
493 B
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/hidapi $(CFLAGS_LIBUSB)
|
|
|
|
if OS_LINUX
|
|
lib_LTLIBRARIES = libhidapi-libusb.la
|
|
libhidapi_libusb_la_SOURCES = hid.c
|
|
libhidapi_libusb_la_LDFLAGS = $(LTLDFLAGS)
|
|
libhidapi_libusb_la_LIBADD = $(LIBS_LIBUSB)
|
|
endif
|
|
|
|
if OS_FREEBSD
|
|
lib_LTLIBRARIES = libhidapi.la
|
|
libhidapi_la_SOURCES = hid.c
|
|
libhidapi_la_LDFLAGS = $(LTLDFLAGS)
|
|
libhidapi_la_LIBADD = $(LIBS_LIBUSB)
|
|
endif
|
|
|
|
hdrdir = $(includedir)/hidapi
|
|
hdr_HEADERS = $(top_srcdir)/hidapi/hidapi.h
|
|
|
|
EXTRA_DIST = Makefile-manual
|