mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
84467d2ff1
Current master (d17db57b9d4354752e0af42f5f33007a42ef2906) because Android support was added after the current release (0.8.0-rc1).
28 lines
666 B
Makefile
28 lines
666 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) $(PTHREAD_CFLAGS)
|
|
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
|
|
|
|
if OS_KFREEBSD
|
|
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
|