1998-11-18 20:42:09 +00:00
|
|
|
EXTRA_LTLIBRARIES = libcontrol.la
|
|
|
|
|
|
2022-05-05 14:28:41 +02:00
|
|
|
libcontrol_la_SOURCES = cards.c tlv.c eld.c namehint.c hcontrol.c \
|
2021-04-06 20:34:18 +02:00
|
|
|
control.c control_hw.c control_empty.c \
|
|
|
|
|
setup.c ctlparse.c \
|
2021-04-06 12:18:23 +02:00
|
|
|
control_plugin.c control_symbols.c
|
2021-03-29 12:36:21 +02:00
|
|
|
if BUILD_CTL_PLUGIN_REMAP
|
|
|
|
|
libcontrol_la_SOURCES += control_remap.c
|
|
|
|
|
endif
|
2007-03-28 13:48:04 +02:00
|
|
|
if BUILD_CTL_PLUGIN_SHM
|
|
|
|
|
libcontrol_la_SOURCES += control_shm.c
|
|
|
|
|
endif
|
|
|
|
|
if BUILD_CTL_PLUGIN_EXT
|
|
|
|
|
libcontrol_la_SOURCES += control_ext.c
|
|
|
|
|
endif
|
1998-11-18 20:42:09 +00:00
|
|
|
|
2001-02-20 22:02:53 +00:00
|
|
|
noinst_HEADERS = control_local.h
|
|
|
|
|
|
1998-11-18 20:42:09 +00:00
|
|
|
all: libcontrol.la
|
|
|
|
|
|
|
|
|
|
|
2014-02-25 12:40:21 +00:00
|
|
|
AM_CPPFLAGS=-I$(top_srcdir)/include
|