blob: c17abb55f77197e2ba9a2afbf3caada3ebb4d19c [file] [log] [blame]
Alexander Huemer7477d712016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 $(NULL)
Neels Hofmeyr2989ff82015-10-12 11:57:35 +02005
Alexander Huemer7477d712016-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 Hofmeyr2989ff82015-10-12 11:57:35 +020016
Alexander Huemer0f3621c2015-11-06 20:58:12 +010017if HAVE_LIBGTP
18if HAVE_LIBCARES
Alexander Huemer7477d712016-09-09 00:43:15 +020019noinst_PROGRAMS = \
20 oap_test \
21 $(NULL)
Alexander Huemer0f3621c2015-11-06 20:58:12 +010022endif
23endif
Neels Hofmeyr2989ff82015-10-12 11:57:35 +020024
Alexander Huemer7477d712016-09-09 00:43:15 +020025oap_test_SOURCES = \
26 oap_test.c \
27 $(NULL)
Neels Hofmeyr2989ff82015-10-12 11:57:35 +020028
29oap_test_LDADD = \
Neels Hofmeyr2989ff82015-10-12 11:57:35 +020030 $(top_builddir)/src/gprs/gprs_utils.o \
Neels Hofmeyr2989ff82015-10-12 11:57:35 +020031 $(top_builddir)/src/libcommon/libcommon.a \
32 $(LIBOSMOCORE_LIBS) \
33 $(LIBOSMOGSM_LIBS) \
34 -lrt
35