blob: 90bbb4ac76f4c77b6fca3c086873810939d64878 [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 $(NULL)
Jacob Erlbeck946d1412013-09-17 13:59:29 +02005
Alexander Huemer7b6673f2016-09-09 00:43:15 +02006AM_CFLAGS = \
7 -Wall \
8 -ggdb3 \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
11 $(LIBOSMOSCCP_CFLAGS) \
12 $(LIBOSMOABIS_CFLAGS) \
Neels Hofmeyrbecfc4c2017-07-19 16:48:42 +020013 $(LIBOSMOLEGACYMGCP_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020014 $(COVERAGE_CFLAGS) \
15 $(NULL)
Jacob Erlbeck946d1412013-09-17 13:59:29 +020016
Alexander Huemer7b6673f2016-09-09 00:43:15 +020017AM_LDFLAGS = \
18 $(COVERAGE_LDFLAGS) \
19 $(NULL)
Jacob Erlbeck946d1412013-09-17 13:59:29 +020020
Alexander Huemer7b6673f2016-09-09 00:43:15 +020021EXTRA_DIST = \
22 bsc_test.ok \
23 $(NULL)
24
25noinst_PROGRAMS = \
26 bsc_test \
27 $(NULL)
28
29bsc_test_SOURCES = \
30 bsc_test.c \
31 $(top_srcdir)/src/osmo-bsc/osmo_bsc_filter.c \
32 $(NULL)
33
34bsc_test_LDADD = \
35 $(top_builddir)/src/libbsc/libbsc.a \
Neels Hofmeyre78ae212016-05-14 00:46:29 +020036 $(top_builddir)/src/libcommon-cs/libcommon-cs.a \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020037 $(top_builddir)/src/libtrau/libtrau.a \
38 $(top_builddir)/src/libcommon/libcommon.a \
39 $(LIBOSMOCORE_LIBS) \
40 $(LIBOSMOGSM_LIBS) \
41 $(LIBOSMOSCCP_LIBS) \
42 $(LIBOSMOVTY_LIBS) \
43 $(LIBOSMOABIS_LIBS) \
Neels Hofmeyrbecfc4c2017-07-19 16:48:42 +020044 $(LIBOSMOLEGACYMGCP_LIBS) \
45 $(LIBRARY_GSM) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020046 -lrt \
47 $(NULL)