blob: df0a43fe2999de2be26e87fd92de437018fab1eb [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 = \
Neels Hofmeyr539a2212016-12-09 00:05:50 +010014 oap_client_test.ok \
Alexander Huemer7477d712016-09-09 00:43:15 +020015 $(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 = \
Neels Hofmeyr539a2212016-12-09 00:05:50 +010020 oap_client_test \
Alexander Huemer7477d712016-09-09 00:43:15 +020021 $(NULL)
Alexander Huemer0f3621c2015-11-06 20:58:12 +010022endif
23endif
Neels Hofmeyr2989ff82015-10-12 11:57:35 +020024
Neels Hofmeyr539a2212016-12-09 00:05:50 +010025oap_client_test_SOURCES = \
26 oap_client_test.c \
Alexander Huemer7477d712016-09-09 00:43:15 +020027 $(NULL)
Neels Hofmeyr2989ff82015-10-12 11:57:35 +020028
Neels Hofmeyr539a2212016-12-09 00:05:50 +010029oap_client_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