blob: a930629fa98fb68263ef7eb2e28e46e508a36a17 [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) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020011 $(LIBOSMOABIS_CFLAGS) \
Neels Hofmeyrbecfc4c2017-07-19 16:48:42 +020012 $(LIBOSMOLEGACYMGCP_CFLAGS) \
Harald Welte74b8cdb2018-01-15 19:26:06 +010013 $(LIBOSMOSIGTRAN_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 \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020031 $(NULL)
32
33bsc_test_LDADD = \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020034 $(top_builddir)/src/osmo-bsc/abis_nm.o \
35 $(top_builddir)/src/osmo-bsc/abis_rsl.o \
36 $(top_builddir)/src/osmo-bsc/arfcn_range_encode.o \
37 $(top_builddir)/src/osmo-bsc/bsc_api.o \
38 $(top_builddir)/src/osmo-bsc/bsc_dyn_ts.o \
39 $(top_builddir)/src/osmo-bsc/osmo_bsc_filter.o \
40 $(top_builddir)/src/osmo-bsc/bsc_rll.o \
41 $(top_builddir)/src/osmo-bsc/bsc_subscriber.o \
42 $(top_builddir)/src/osmo-bsc/chan_alloc.o \
43 $(top_builddir)/src/osmo-bsc/gsm_04_08_utils.o \
44 $(top_builddir)/src/osmo-bsc/gsm_04_80_utils.o \
45 $(top_builddir)/src/osmo-bsc/gsm_data.o \
46 $(top_builddir)/src/osmo-bsc/handover_cfg.o \
47 $(top_builddir)/src/osmo-bsc/handover_logic.o \
48 $(top_builddir)/src/osmo-bsc/net_init.o \
49 $(top_builddir)/src/osmo-bsc/paging.o \
50 $(top_builddir)/src/osmo-bsc/pcu_sock.o \
51 $(top_builddir)/src/osmo-bsc/rest_octets.o \
52 $(top_builddir)/src/osmo-bsc/system_information.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020053 $(LIBOSMOCORE_LIBS) \
54 $(LIBOSMOGSM_LIBS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020055 $(LIBOSMOVTY_LIBS) \
56 $(LIBOSMOABIS_LIBS) \
Neels Hofmeyrbecfc4c2017-07-19 16:48:42 +020057 $(LIBOSMOLEGACYMGCP_LIBS) \
58 $(LIBRARY_GSM) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020059 -lrt \
60 $(NULL)