blob: 4fc3605c0b54573799723e0c99a906a5adc73947 [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 $(NULL)
Holger Hans Peter Freytherbce56752012-11-22 14:59:46 +01005
Alexander Huemer7b6673f2016-09-09 00:43:15 +02006AM_CFLAGS = \
7 -Wall \
8 -ggdb3 \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOABIS_CFLAGS) \
11 $(LIBOSMOGSM_CFLAGS) \
12 $(COVERAGE_CFLAGS) \
13 $(NULL)
Holger Hans Peter Freytherbce56752012-11-22 14:59:46 +010014
Alexander Huemer7b6673f2016-09-09 00:43:15 +020015EXTRA_DIST = \
16 abis_test.ok \
17 $(NULL)
Holger Hans Peter Freytherbce56752012-11-22 14:59:46 +010018
Alexander Huemer7b6673f2016-09-09 00:43:15 +020019noinst_PROGRAMS = \
20 abis_test \
21 $(NULL)
22
23abis_test_SOURCES = \
24 abis_test.c \
25 $(NULL)
Holger Hans Peter Freytherbce56752012-11-22 14:59:46 +010026
27abis_test_LDADD = \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020028 $(top_builddir)/src/osmo-bsc/abis_nm.o \
29 $(top_builddir)/src/osmo-bsc/gsm_data.o \
Neels Hofmeyr596c4022018-06-16 19:29:50 +020030 $(top_builddir)/src/osmo-bsc/gsm_timers.o \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020031 $(top_builddir)/src/osmo-bsc/net_init.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020032 $(LIBOSMOCORE_LIBS) \
33 $(LIBOSMOABIS_LIBS) \
34 $(LIBOSMOGSM_LIBS) \
35 $(NULL)