mirror of
https://github.com/RPCS3/hidapi.git
synced 2024-11-23 10:09:43 +00:00
d4888c5f65
Deleted DDK build scripts, support files and documentation for it, as it wasn't working of-the-box with recent tool-sets from MS anyway. Still keeping `HIDAPI_USE_DDK` macro in the code, as it still _can_ be used if the build configuration is setup properly. Resolves: #49
16 lines
344 B
Makefile
16 lines
344 B
Makefile
lib_LTLIBRARIES = libhidapi.la
|
|
libhidapi_la_SOURCES = hid.c
|
|
libhidapi_la_LDFLAGS = $(LTLDFLAGS)
|
|
AM_CPPFLAGS = -I$(top_srcdir)/hidapi/
|
|
libhidapi_la_LIBADD = $(LIBS)
|
|
|
|
hdrdir = $(includedir)/hidapi
|
|
hdr_HEADERS = $(top_srcdir)/hidapi/hidapi.h
|
|
|
|
EXTRA_DIST = \
|
|
hidapi.vcproj \
|
|
hidtest.vcproj \
|
|
Makefile-manual \
|
|
Makefile.mingw \
|
|
hidapi.sln
|