blob: 4529a33e53dd34ea714c23fb142ecfeae02e3971 [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 Weltea17faf82011-03-03 23:36:48 +01006
Alexander Huemer7b6673f2016-09-09 00:43:15 +02007AM_CFLAGS = \
8 -Wall \
9 $(LIBOSMOCORE_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020010 $(LIBOSMOVTY_CFLAGS) \
Neels Hofmeyre9920f22017-07-10 15:07:22 +020011 $(LIBBCG729_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020012 $(COVERAGE_CFLAGS) \
13 $(NULL)
Harald Weltea17faf82011-03-03 23:36:48 +010014
Alexander Huemer7b6673f2016-09-09 00:43:15 +020015bin_PROGRAMS = \
16 osmo-bsc_mgcp \
17 $(NULL)
Jacob Erlbeck909fac62014-05-08 14:08:37 +020018
Alexander Huemer7b6673f2016-09-09 00:43:15 +020019osmo_bsc_mgcp_SOURCES = \
20 mgcp_main.c \
21 $(NULL)
22
23osmo_bsc_mgcp_LDADD = \
Neels Hofmeyre9920f22017-07-10 15:07:22 +020024 $(top_builddir)/src/libosmo-legacy-mgcp/libosmo-legacy-mgcp.la \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020025 $(LIBOSMOCORE_LIBS) \
Neels Hofmeyre9920f22017-07-10 15:07:22 +020026 $(LIBOSMOVTY_LIBS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020027 $(LIBBCG729_LIBS) \
28 $(LIBRARY_GSM) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020029 $(NULL)