blob: 06ccf33866a8819a14d2d5c0d08b964ef2f4567c [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 $(NULL)
Neels Hofmeyrf06046b2015-10-12 11:57:35 +02005
Alexander Huemer7b6673f2016-09-09 00:43:15 +02006AM_CFLAGS = \
7 -Wall \
8 -ggdb3 \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
11 $(NULL)
12
13EXTRA_DIST = \
14 oap_test.ok \
15 $(NULL)
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020016
Alexander Huemer6cacc562015-11-06 20:58:12 +010017if HAVE_LIBGTP
18if HAVE_LIBCARES
Alexander Huemer7b6673f2016-09-09 00:43:15 +020019noinst_PROGRAMS = \
20 oap_test \
21 $(NULL)
Alexander Huemer6cacc562015-11-06 20:58:12 +010022endif
23endif
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020024
Alexander Huemer7b6673f2016-09-09 00:43:15 +020025oap_test_SOURCES = \
26 oap_test.c \
27 $(NULL)
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020028
29oap_test_LDADD = \
30 $(top_builddir)/src/gprs/oap.o \
31 $(top_builddir)/src/gprs/oap_messages.o \
32 $(top_builddir)/src/gprs/gprs_utils.o \
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020033 $(top_builddir)/src/libcommon/libcommon.a \
34 $(LIBOSMOCORE_LIBS) \
35 $(LIBOSMOGSM_LIBS) \
36 -lrt
37