blob: ca00a6ff571b47a511a323369937855ab969daaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
AUTOMAKE_OPTIONS = foreign
noinst_PROGRAMS = hidio
hidio_SOURCES = hidio.c hidio_types.c
hidio_CFLAGS = $(CFLAGS)
hidio_LDADD =
hidio_LDFLAGS = $(LDFLAGS)
noinst_HEADERS = hidio.h input_arrays.h
EXTRA_SUBDIRS =
if MACOSX
hidio_SOURCES += hidio_darwin.c
EXTRA_SUBDIRS += HID_Utilities_Source
hidio_CFLAGS += -IHID_Utilities_Source
hidio_LDADD += HID_Utilities_Source/libHIDUtilities.a
hidio_LDFLAGS += -bundle -undefined dynamic_lookup \
-framework Carbon -framework IOKit -framework ForceFeedback
endif
if LINUX
hidio_SOURCES += hidio_linux.c input_arrays.c
endif
if WINDOWS
hidio_SOURCES += hidio_windows.c
endif
# files that are included but not built
EXTRA_DIST = COPYING README TODO
# subdirs that are built
SUBDIRS = $(EXTRA_SUBDIRS)
# subdirs that are always included in the dist, etc.
DIST_SUBDIRS = HID_Utilities_Source
|