blob: ef38fb626d17f4898fcfe59a7373ff7ce402d7c0 [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 $(NULL)
Jacob Erlbeck51a869c2013-10-15 12:00:26 +02005
Alexander Huemer7b6673f2016-09-09 00:43:15 +02006AM_CFLAGS = \
7 -Wall \
8 -ggdb3 \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
11 $(LIBOSMOABIS_CFLAGS) \
12 $(NULL)
Jacob Erlbeck51a869c2013-10-15 12:00:26 +020013
Alexander Huemer7b6673f2016-09-09 00:43:15 +020014AM_LDFLAGS = \
15 $(COVERAGE_LDFLAGS) \
16 $(NULL)
Jacob Erlbeck51a869c2013-10-15 12:00:26 +020017
Alexander Huemer7b6673f2016-09-09 00:43:15 +020018EXTRA_DIST = \
19 gbproxy_test.ok \
20 $(NULL)
21
22noinst_PROGRAMS = \
23 gbproxy_test \
24 $(NULL)
25
26gbproxy_test_SOURCES = \
27 gbproxy_test.c \
28 $(NULL)
29
Daniel Willmann537d4802015-10-12 19:36:35 +020030gbproxy_test_LDFLAGS = \
Max3b6332f2017-11-01 13:28:38 +010031 -Wl,--wrap=osmo_get_rand_id \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020032 $(NULL)
33
Jacob Erlbeck51a869c2013-10-15 12:00:26 +020034gbproxy_test_LDADD = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020035 $(top_builddir)/src/gprs/gb_proxy.o \
36 $(top_builddir)/src/gprs/gb_proxy_patch.o \
37 $(top_builddir)/src/gprs/gb_proxy_peer.o \
38 $(top_builddir)/src/gprs/gb_proxy_tlli.o \
39 $(top_builddir)/src/gprs/gprs_gb_parse.o \
40 $(top_builddir)/src/gprs/gprs_llc_parse.o \
41 $(top_builddir)/src/gprs/crc24.o \
42 $(top_builddir)/src/gprs/gprs_utils.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020043 $(LIBOSMOCORE_LIBS) \
44 $(LIBOSMOGB_LIBS) \
45 $(LIBOSMOGSM_LIBS) \
46 $(LIBOSMOVTY_LIBS) \
47 $(LIBOSMOABIS_LIBS) \
48 $(LIBRARY_DL) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020049 -lrt \
50 $(NULL)