blob: 5b770bcb2bbb712824ecdc3d45f90af933583e98 [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 $(NULL)
Jacob Erlbeck0acc0012014-12-03 13:05:16 +01005
Alexander Huemer7b6673f2016-09-09 00:43:15 +02006AM_CFLAGS = \
7 -Wall \
8 -ggdb3 \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
11 $(LIBOSMOABIS_CFLAGS) \
12 $(LIBSMPP34_CFLAGS) \
13 $(COVERAGE_CFLAGS) \
14 $(NULL)
Jacob Erlbeck0acc0012014-12-03 13:05:16 +010015
Alexander Huemer7b6673f2016-09-09 00:43:15 +020016AM_LDFLAGS = \
17 $(COVERAGE_LDFLAGS) \
18 $(NULL)
Jacob Erlbeck0acc0012014-12-03 13:05:16 +010019
Alexander Huemer7b6673f2016-09-09 00:43:15 +020020EXTRA_DIST = \
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010021 bsc_subscr_test.ok \
22 bsc_subscr_test.err \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020023 $(NULL)
Jacob Erlbeck0acc0012014-12-03 13:05:16 +010024
Alexander Huemer7b6673f2016-09-09 00:43:15 +020025noinst_PROGRAMS = \
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010026 bsc_subscr_test \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020027 $(NULL)
28
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010029bsc_subscr_test_SOURCES = \
30 bsc_subscr_test.c \
31 $(NULL)
32
33bsc_subscr_test_LDADD = \
34 $(top_builddir)/src/libbsc/libbsc.a \
35 $(top_builddir)/src/libcommon-cs/libcommon-cs.a \
36 $(top_builddir)/src/libtrau/libtrau.a \
37 $(top_builddir)/src/libcommon/libcommon.a \
38 $(LIBOSMOCORE_LIBS) \
39 $(LIBOSMOABIS_LIBS) \
40 $(LIBOSMOGSM_LIBS) \
41 $(LIBSMPP34_LIBS) \
42 $(LIBOSMOVTY_LIBS) \
43 $(NULL)