blob: 180cceec7fc940c75dcb5ce7c5646d3f66e06db9 [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 = \
Pau Espin Pedrol9d016fd2019-08-30 19:48:34 +020035 $(top_builddir)/src/gbproxy/gb_proxy.o \
Pau Espin Pedrol9d016fd2019-08-30 19:48:34 +020036 $(top_builddir)/src/gbproxy/gb_proxy_peer.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020037 $(top_builddir)/src/gprs/gprs_gb_parse.o \
38 $(top_builddir)/src/gprs/gprs_llc_parse.o \
39 $(top_builddir)/src/gprs/crc24.o \
40 $(top_builddir)/src/gprs/gprs_utils.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020041 $(LIBOSMOCORE_LIBS) \
42 $(LIBOSMOGB_LIBS) \
43 $(LIBOSMOGSM_LIBS) \
44 $(LIBOSMOVTY_LIBS) \
45 $(LIBOSMOABIS_LIBS) \
46 $(LIBRARY_DL) \
Eric6528e8c2020-04-11 01:04:08 +020047 $(LIBRARY_DLSYM) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020048 -lrt \
49 $(NULL)