blob: 4726bbe4b097d2eddea020722fc7a33ce6f08432 [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) \
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020015 $(LIBASN1C_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020016 $(NULL)
Harald Welteb4771a62012-11-11 10:58:51 +010017
Alexander Huemer7b6673f2016-09-09 00:43:15 +020018noinst_HEADERS = \
19 meas_feed.h \
20 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010021
Alexander Huemer7b6673f2016-09-09 00:43:15 +020022noinst_LIBRARIES = \
23 libmsc.a \
24 $(NULL)
25
26libmsc_a_SOURCES = \
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020027 a_iface.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020028 auth.c \
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020029 msc_vty.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020030 db.c \
31 gsm_04_08.c \
32 gsm_04_11.c \
Harald Welteeac38c32017-05-29 18:02:53 +020033 gsm_04_14.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020034 gsm_04_80.c \
35 gsm_subscriber.c \
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020036 iucs.c \
37 iucs_ranap.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020038 mncc.c \
39 mncc_builtin.c \
40 mncc_sock.c \
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020041 msc_ifaces.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020042 rrlp.c \
43 silent_call.c \
44 sms_queue.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020045 ussd.c \
46 vty_interface_layer3.c \
47 transaction.c \
48 osmo_msc.c \
49 ctrl_commands.c \
50 meas_feed.c \
Harald Welte2483f1b2016-06-19 18:06:02 +020051 subscr_conn.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020052 $(NULL)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020053if !BUILD_IU
54libmsc_a_SOURCES += \
55 iu_dummy.c \
56 $(NULL)
57endif
Harald Welte31c00f72011-03-03 23:29:05 +010058
Harald Welte6c7680d2012-11-16 22:15:22 +010059if BUILD_SMPP
Alexander Huemer7b6673f2016-09-09 00:43:15 +020060noinst_HEADERS += \
61 smpp_smsc.h \
62 $(NULL)
63
64libmsc_a_SOURCES += \
65 smpp_smsc.c \
66 smpp_openbsc.c \
67 smpp_vty.c \
68 smpp_utils.c \
69 $(NULL)
Harald Welte6c7680d2012-11-16 22:15:22 +010070endif