blob: 75a29260945e7906498a68ce01d46b0dda2a9c86 [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) \
Max5346f692022-07-28 14:19:22 +070037 $(LIBOSMOSCCP_CFLAGS) \
38 $(LIBOSMOMGCPCLIENT_CFLAGS) \
Alexander Huemera55dda72017-12-02 22:28:52 +010039 $(LIBSMPP34_CFLAGS) \
40 $(NULL)
41
Alexander Huemer7b6673f2016-09-09 00:43:15 +020042smpp_mirror_LDADD = \
Max5346f692022-07-28 14:19:22 +070043 $(top_builddir)/src/libsmpputil/libsmpputil.a \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020044 $(LIBOSMOCORE_LIBS) \
45 $(LIBOSMOGSM_LIBS) \
Max5346f692022-07-28 14:19:22 +070046 $(LIBOSMONETIF_LIBS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020047 $(LIBSMPP34_LIBS) \
48 $(NULL)
Stefan Sperling2d95ab62018-05-17 15:40:03 +020049endif