blob: 8ad5967329b16951856df015750e3a2dc2a3859a [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) \
Harald Welte0d89bd52024-09-09 09:34:08 +020012 $(LIBOSMOSIGTRAN_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020013 $(LIBOSMOABIS_CFLAGS) \
Max5346f692022-07-28 14:19:22 +070014 $(LIBOSMOMGCPCLIENT_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020015 $(COVERAGE_CFLAGS) \
16 $(LIBSMPP34_CFLAGS) \
17 $(NULL)
Holger Hans Peter Freythera7328a52013-07-13 17:09:56 +020018
Alexander Huemer7b6673f2016-09-09 00:43:15 +020019AM_LDFLAGS = \
20 $(COVERAGE_LDFLAGS) \
Vadim Yanitskiyfe90aff2023-03-11 04:54:07 +070021 -no-install \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020022 $(NULL)
Holger Hans Peter Freythera7328a52013-07-13 17:09:56 +020023
Alexander Huemer7b6673f2016-09-09 00:43:15 +020024EXTRA_DIST = \
25 smpp_test.ok \
26 smpp_test.err \
27 $(NULL)
28
Vadim Yanitskiyc628c9e2022-04-13 19:55:35 +030029check_PROGRAMS = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020030 smpp_test \
31 $(NULL)
32
33smpp_test_SOURCES = \
34 smpp_test.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020035 $(NULL)
36
Harald Welte6a8cbe92015-11-21 15:43:29 +010037smpp_test_LDADD = \
Max5346f692022-07-28 14:19:22 +070038 $(top_builddir)/src/libsmpputil/libsmpputil.a \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020039 $(LIBOSMOCORE_LIBS) \
40 $(LIBOSMOGSM_LIBS) \
41 $(NULL)