blob: d818811d9fbc6f9e70be055e01170f7ae2bd8a5e [file] [log] [blame]
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
2AM_CFLAGS=-Wall -ggdb3 $(LIBOSMOCORE_CFLAGS)
3
4EXTRA_DIST = \
5 gtphub_test.ok \
6 gtphub_nc_test.sh \
7 gtphub_nc_test.ok \
8 hex2bin.py
9
10noinst_PROGRAMS = gtphub_test
11
12gtphub_test_SOURCES = gtphub_test.c
13gtphub_test_LDFLAGS = \
Neels Hofmeyrf16657a2015-11-08 20:34:47 +010014 -Wl,--wrap=gtphub_resolve_ggsn_addr \
15 -Wl,--wrap=gtphub_ares_init
Neels Hofmeyr9f796642015-09-24 17:32:30 +020016
17gtphub_test_LDADD = \
18 $(top_builddir)/src/gprs/gtphub.o \
Neels Hofmeyrf16657a2015-11-08 20:34:47 +010019 $(top_builddir)/src/gprs/gprs_utils.o \
Neels Hofmeyr9f796642015-09-24 17:32:30 +020020 $(LIBOSMOCORE_LIBS) \
21 -lgtp -lrt
22