aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-11-23 13:07:25 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-11-27 12:48:16 +0100
commitca1c33a29b34f150b861d40100a6125e641b9bab (patch)
treec176885cf6bc083a0aaeeec4be58fb3ba8e97ca5
parent3bd747e3af13bce7f943a5531efa1a8e47cf93b5 (diff)
tests: Fix build of mtp_parse_test
-rw-r--r--tests/mtp/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/mtp/Makefile.am b/tests/mtp/Makefile.am
index cf48d6a..6c59eb8 100644
--- a/tests/mtp/Makefile.am
+++ b/tests/mtp/Makefile.am
@@ -1,8 +1,9 @@
-AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include $(LIBOSMOCORE_CFLAGS) -Wall
+AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include $(LIBOSMOCORE_CFLAGS) $(LIBOSMOSCCP_CFLAGS) -Wall
noinst_PROGRAMS = mtp_parse_test
EXTRA_DIST = mtp_parse_test.ok
mtp_parse_test_SOURCES = mtp_parse_test.c $(top_srcdir)/src/sctp_m3ua_misc.c
mtp_parse_test_LDADD = \
- $(LIBOSMOCORE_LIBS)
+ $(LIBOSMOCORE_LIBS) \
+ $(LIBOSMOSCCP_LIBS)