blob: 3c06514560abc8797013c0d0dc47e018e2f61557 [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 $(LIBOSMOVTY_CFLAGS) \
11 $(LIBOSMOABIS_CFLAGS) \
12 $(COVERAGE_CFLAGS) \
13 $(LIBCRYPTO_CFLAGS) \
14 $(LIBSMPP34_CFLAGS) \
15 $(NULL)
Harald Welteb4771a62012-11-11 10:58:51 +010016
Alexander Huemer7b6673f2016-09-09 00:43:15 +020017noinst_HEADERS = \
18 meas_feed.h \
19 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010020
Alexander Huemer7b6673f2016-09-09 00:43:15 +020021noinst_LIBRARIES = \
22 libmsc.a \
23 $(NULL)
24
25libmsc_a_SOURCES = \
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020026 a_iface.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020027 auth.c \
28 db.c \
29 gsm_04_08.c \
30 gsm_04_11.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020031 gsm_04_80.c \
32 gsm_subscriber.c \
33 mncc.c \
34 mncc_builtin.c \
35 mncc_sock.c \
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020036 msc_ifaces.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020037 rrlp.c \
38 silent_call.c \
39 sms_queue.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020040 ussd.c \
41 vty_interface_layer3.c \
42 transaction.c \
43 osmo_msc.c \
44 ctrl_commands.c \
45 meas_feed.c \
Harald Welte2483f1b2016-06-19 18:06:02 +020046 subscr_conn.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020047 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010048
Harald Welte6c7680d2012-11-16 22:15:22 +010049if BUILD_SMPP
Alexander Huemer7b6673f2016-09-09 00:43:15 +020050noinst_HEADERS += \
51 smpp_smsc.h \
52 $(NULL)
53
54libmsc_a_SOURCES += \
55 smpp_smsc.c \
56 smpp_openbsc.c \
57 smpp_vty.c \
58 smpp_utils.c \
59 $(NULL)
Harald Welte6c7680d2012-11-16 22:15:22 +010060endif