blob: 8d631198c7bdcdf6145fbd91874b941bcfc962ca [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 -I$(top_srcdir)/src/libmsc \
5 $(NULL)
Holger Hans Peter Freythera7328a52013-07-13 17:09:56 +02006
Alexander Huemer7b6673f2016-09-09 00:43:15 +02007AM_CFLAGS = \
8 -Wall \
9 -ggdb3 \
10 $(LIBOSMOCORE_CFLAGS) \
11 $(LIBOSMOGSM_CFLAGS) \
12 $(LIBOSMOSCCP_CFLAGS) \
13 $(LIBOSMOABIS_CFLAGS) \
14 $(COVERAGE_CFLAGS) \
15 $(LIBSMPP34_CFLAGS) \
16 $(NULL)
Holger Hans Peter Freythera7328a52013-07-13 17:09:56 +020017
Alexander Huemer7b6673f2016-09-09 00:43:15 +020018AM_LDFLAGS = \
19 $(COVERAGE_LDFLAGS) \
20 $(NULL)
Holger Hans Peter Freythera7328a52013-07-13 17:09:56 +020021
Alexander Huemer7b6673f2016-09-09 00:43:15 +020022EXTRA_DIST = \
23 smpp_test.ok \
24 smpp_test.err \
25 $(NULL)
26
27noinst_PROGRAMS = \
28 smpp_test \
29 $(NULL)
30
31smpp_test_SOURCES = \
32 smpp_test.c \
33 $(top_builddir)/src/libmsc/smpp_utils.c \
34 $(NULL)
35
Harald Welte6a8cbe92015-11-21 15:43:29 +010036smpp_test_LDADD = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020037 $(LIBOSMOCORE_LIBS) \
38 $(LIBOSMOGSM_LIBS) \
39 $(NULL)