blob: d236d3a795ae3c6985cdf8f81e0018445f20b1c6 [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 = \
26 auth.c \
27 db.c \
28 gsm_04_08.c \
29 gsm_04_11.c \
30 gsm_04_11_helper.c \
31 gsm_04_80.c \
32 gsm_subscriber.c \
33 mncc.c \
34 mncc_builtin.c \
35 mncc_sock.c \
36 rrlp.c \
37 silent_call.c \
38 sms_queue.c \
39 token_auth.c \
40 ussd.c \
41 vty_interface_layer3.c \
42 transaction.c \
43 osmo_msc.c \
44 ctrl_commands.c \
45 meas_feed.c \
46 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010047
Harald Welte6c7680d2012-11-16 22:15:22 +010048if BUILD_SMPP
Alexander Huemer7b6673f2016-09-09 00:43:15 +020049noinst_HEADERS += \
50 smpp_smsc.h \
51 $(NULL)
52
53libmsc_a_SOURCES += \
54 smpp_smsc.c \
55 smpp_openbsc.c \
56 smpp_vty.c \
57 smpp_utils.c \
58 $(NULL)
Harald Welte6c7680d2012-11-16 22:15:22 +010059endif