blob: 8d14ebf9d6b1d0b9da9f0ace6f84c0d600e9d7bb [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 \
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010035 $(LIBOSMOCORE_LIBS) \
36 $(LIBOSMOABIS_LIBS) \
37 $(LIBOSMOGSM_LIBS) \
38 $(LIBSMPP34_LIBS) \
39 $(LIBOSMOVTY_LIBS) \
40 $(NULL)