blob: fad522df19849b50da572d132d29d3309e944b5f [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) \
13 $(SQLITE3_CFLAGS) \
14 $(LIBSMPP34_CFLAGS) \
15 $(NULL)
Harald Weltedc9b4e92012-11-15 00:12:56 +010016
Alexander Huemer7b6673f2016-09-09 00:43:15 +020017AM_LDFLAGS = \
18 $(COVERAGE_LDFLAGS) \
19 $(NULL)
20
21noinst_HEADERS = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020022 $(NULL)
23
24bin_PROGRAMS = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020025 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010026
Harald Weltec0de14d2012-11-23 23:35:01 +010027if BUILD_SMPP
Alexander Huemer7b6673f2016-09-09 00:43:15 +020028noinst_PROGRAMS = \
29 smpp_mirror \
30 $(NULL)
Harald Weltec0de14d2012-11-23 23:35:01 +010031endif
32
Alexander Huemer7b6673f2016-09-09 00:43:15 +020033smpp_mirror_SOURCES = \
34 smpp_mirror.c \
35 $(NULL)
Harald Weltedc9b4e92012-11-15 00:12:56 +010036
Alexander Huemera55dda72017-12-02 22:28:52 +010037smpp_mirror_CFLAGS = \
38 $(LIBOSMOCORE_CFLAGS) \
39 $(LIBSMPP34_CFLAGS) \
40 $(NULL)
41
Alexander Huemer7b6673f2016-09-09 00:43:15 +020042smpp_mirror_LDADD = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020043 $(LIBOSMOCORE_LIBS) \
44 $(LIBOSMOGSM_LIBS) \
45 $(LIBSMPP34_LIBS) \
46 $(NULL)
Harald Weltedfbc42c2012-11-15 12:29:15 +010047