Skip to content

Commit

Permalink
autoconf : forgotten to commit MakeFile for hidparsertest
Browse files Browse the repository at this point in the history
  • Loading branch information
Marije Baalman committed Oct 1, 2013
1 parent c81dec1 commit 521164f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions hidparsertest/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
AM_CFLAGS = -I$(top_srcdir)/hidapi/ -I$(top_srcdir)/hidapi_parser/
AM_CPPFLAGS = -I$(top_srcdir)/hidapi/ -I$(top_srcdir)/hidapi_parser/
## Linux
if OS_LINUX
noinst_PROGRAMS = hidapi_parser-libusb hidapi_parser-hidraw

hidapi_parser_hidraw_SOURCES = $(top_srcdir)/hidapi_parser/hidapi_parser.c hidparsertest.c
hidapi_parser_hidraw_LDADD = $(top_builddir)/linux/libhidapi-hidraw.la

hidapi_parser_libusb_SOURCES = $(top_srcdir)/hidapi_parser/hidapi_parser.c hidparsertest.c
hidapi_parser_libusb_LDADD = $(top_builddir)/libusb/libhidapi-libusb.la
else

noinst_PROGRAMS = hidapi_parser

hidapi_parser_SOURCES = $(top_srcdir)/hidapi_parser/hidapi_parser.c hidparsertest.c
# hidapi_parser_HEADERS = hidapi_parser.h
hidapi_parser_LDADD = $(top_builddir)/$(backend)/libhidapi.la

endif

0 comments on commit 521164f

Please sign in to comment.