aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmsc/Makefile.am
blob: e6a2dc1640f18f4f7e2a80588b679a10e53a8b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
AM_CPPFLAGS = \
	$(all_includes) \
	-I$(top_srcdir)/include \
	-I$(top_builddir) \
	$(NULL)

AM_CFLAGS = \
	-Wall \
	$(LIBOSMOCORE_CFLAGS) \
	$(LIBOSMOVTY_CFLAGS) \
	$(LIBOSMOABIS_CFLAGS) \
	$(COVERAGE_CFLAGS) \
	$(LIBSMPP34_CFLAGS) \
	$(LIBASN1C_CFLAGS) \
	$(LIBOSMOSIGTRAN_CFLAGS) \
	$(LIBOSMOSCCP_CFLAGS) \
	$(LIBOSMOMGCPCLIENT_CFLAGS) \
	$(LIBOSMOGSUPCLIENT_CFLAGS) \
	$(LIBOSMORANAP_CFLAGS) \
	$(LIBOSMONETIF_CFLAGS) \
	$(NULL)

noinst_HEADERS = \
	$(NULL)

noinst_LIBRARIES = \
	libmsc.a \
	$(NULL)

libmsc_a_SOURCES = \
	call_leg.c \
	cell_id_list.c \
	sccp_ran.c \
	msc_vty.c \
	db.c \
	e_link.c \
	gsm_04_08.c \
	gsm_04_08_cc.c \
	gsm_04_11.c \
	gsm_04_11_gsup.c \
	gsm_04_14.c \
	gsm_04_80.c \
	gsm_09_11.c \
	gsup_client_mux.c \
	mncc.c \
	mncc_builtin.c \
	mncc_sock.c \
	mncc_call.c \
	msub.c \
	msc_a.c \
	msc_a_remote.c \
	msc_i.c \
	msc_i_remote.c \
	msc_t.c \
	msc_t_remote.c \
	msc_ho.c \
	neighbor_ident.c \
	neighbor_ident_vty.c \
	paging.c \
	ran_conn.c \
	ran_infra.c \
	ran_msg.c \
	ran_msg_a.c \
	ran_peer.c \
	rrlp.c \
	rtp_stream.c \
	sdp_msg.c \
	silent_call.c \
	sms_queue.c \
	transaction.c \
	msc_net_init.c \
	ctrl_commands.c \
	sgs_iface.c \
	sgs_server.c \
	sgs_vty.c \
	$(NULL)

if BUILD_IU
libmsc_a_SOURCES += \
	ran_msg_iu.c \
	$(NULL)
endif

if BUILD_SMPP
noinst_HEADERS += \
	smpp_smsc.h \
	$(NULL)

libmsc_a_SOURCES += \
	smpp_smsc.c \
	smpp_openbsc.c \
	smpp_vty.c \
	smpp_utils.c \
	$(NULL)
endif