blob: 75535d4fddde41405ed2d2b075afe1f2e1adb1c4 [file] [log] [blame]
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +08001ACLOCAL_AMFLAGS = -I m4
2
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +08003lib_LTLIBRARIES = libmctp.la
Jeremy Kerrc7e764a2019-05-28 16:49:03 +08004libmctp_la_SOURCES = core.c alloc.c log.c \
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +01005 libmctp-alloc.h libmctp-log.h \
6 libmctp-cmds.h
Jeremy Kerr8682ef22019-05-30 17:46:44 +08007include_HEADERS = libmctp.h
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +08008
9if LIBMCTP_BINDING_serial
Jeremy Kerr8682ef22019-05-30 17:46:44 +080010libmctp_la_SOURCES += serial.c
11include_HEADERS += libmctp-serial.h
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +080012endif
13
14if LIBMCTP_BINDING_astlpc
Jeremy Kerr8682ef22019-05-30 17:46:44 +080015libmctp_la_SOURCES += astlpc.c
16include_HEADERS += libmctp-astlpc.h
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +080017endif
18
Xiaochao Ma1e496c82020-01-16 17:19:11 +080019if HAVE_SYSTEMD
20systemdsystemunit_DATA = \
21 mctp-demux.service
22endif
23
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +080024bin_PROGRAMS = utils/mctp-demux-daemon
25utils_mctp_demux_daemon_LDADD = libmctp.la
26
Jeremy Kerr80971f82019-08-29 09:57:58 +053027pkgconfig_DATA = libmctp.pc
28
Andrew Jeffery7344ac22020-01-10 16:13:07 +103029if AUTOCONF_CODE_COVERAGE_2019_01_06
30include $(top_srcdir)/aminclude_static.am
31clean-local: code-coverage-clean
32distclean-local: code-coverage-dist-clean
33else
34@CODE_COVERAGE_RULES@
35endif
36
37AM_CPPFLAGS = $(CODE_COVERAGE_CPPFLAGS)
38AM_CFLAGS = $(CODE_COVERAGE_CFLAGS)
39AM_LDFLAGS = $(CODE_COVERAGE_LDFLAGS)
40
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +080041TESTS = $(check_PROGRAMS)
42
Andrew Jeffery0247c732020-02-06 11:48:52 +103043check_PROGRAMS = tests/test_eid tests/test_seq tests/test_bridge \
Wiktor Gołgowskiba6727e2020-03-13 18:25:01 +010044 tests/test_astlpc tests/test_serial tests/test_cmds
Jeremy Kerrb2ef62b2019-05-28 09:38:25 +080045# We set a global LDADD here, as there's no way to specify it for all
46# tests. This means other targets' LDADDs need to be overridden.
47LDADD = tests/libtest-utils.a libmctp.la
48
49noinst_LIBRARIES = tests/libtest-utils.a
50
51tests_libtest_utils_a_SOURCES = tests/test-utils.c tests/test-utils.h