blob: cb0faf69fb2bc0277bd85f3354097d05b45491ba [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 -I$(top_builddir) \
5 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +01006
Alexander Huemer7b6673f2016-09-09 00:43:15 +02007AM_CFLAGS = \
8 -Wall \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020011 $(LIBOSMOABIS_CFLAGS) \
12 $(COVERAGE_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020013 $(LIBSMPP34_CFLAGS) \
14 $(NULL)
Harald Weltedc9b4e92012-11-15 00:12:56 +010015
Alexander Huemer7b6673f2016-09-09 00:43:15 +020016AM_LDFLAGS = \
17 $(COVERAGE_LDFLAGS) \
18 $(NULL)
19
20noinst_HEADERS = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020021 $(NULL)
22
23bin_PROGRAMS = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020024 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010025
Harald Weltec0de14d2012-11-23 23:35:01 +010026if BUILD_SMPP
Alexander Huemer7b6673f2016-09-09 00:43:15 +020027noinst_PROGRAMS = \
28 smpp_mirror \
29 $(NULL)
Harald Weltec0de14d2012-11-23 23:35:01 +010030
Alexander Huemer7b6673f2016-09-09 00:43:15 +020031smpp_mirror_SOURCES = \
32 smpp_mirror.c \
33 $(NULL)
Harald Weltedc9b4e92012-11-15 00:12:56 +010034
Alexander Huemera55dda72017-12-02 22:28:52 +010035smpp_mirror_CFLAGS = \
36 $(LIBOSMOCORE_CFLAGS) \
37 $(LIBSMPP34_CFLAGS) \
38 $(NULL)
39
Alexander Huemer7b6673f2016-09-09 00:43:15 +020040smpp_mirror_LDADD = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020041 $(LIBOSMOCORE_LIBS) \
42 $(LIBOSMOGSM_LIBS) \
43 $(LIBSMPP34_LIBS) \
44 $(NULL)
Stefan Sperling2d95ab62018-05-17 15:40:03 +020045endif