blob: 538e1787e02b5f1a3db3f01372e462b948950407 [file] [log] [blame]
Neels Hofmeyrf06046b2015-10-12 11:57:35 +02001AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
2AM_CFLAGS=-Wall -ggdb3 $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS)
3
4EXTRA_DIST = oap_test.ok
5
Alexander Huemer6cacc562015-11-06 20:58:12 +01006if HAVE_LIBGTP
7if HAVE_LIBCARES
Neels Hofmeyrf06046b2015-10-12 11:57:35 +02008noinst_PROGRAMS = oap_test
Alexander Huemer6cacc562015-11-06 20:58:12 +01009endif
10endif
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020011
12oap_test_SOURCES = oap_test.c
13
14oap_test_LDADD = \
15 $(top_builddir)/src/gprs/oap.o \
16 $(top_builddir)/src/gprs/oap_messages.o \
17 $(top_builddir)/src/gprs/gprs_utils.o \
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020018 $(top_builddir)/src/libcommon/libcommon.a \
19 $(LIBOSMOCORE_LIBS) \
20 $(LIBOSMOGSM_LIBS) \
21 -lrt
22