blob: e8a6f468ca10580942e573b2e2d08735e713c0e1 [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) \
Harald Welte106743c2018-01-15 18:53:39 +010011 $(LIBOSMONETIF_CFLAGS) \
Neels Hofmeyre9920f22017-07-10 15:07:22 +020012 $(LIBBCG729_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020013 $(COVERAGE_CFLAGS) \
14 $(NULL)
Harald Weltea17faf82011-03-03 23:36:48 +010015
Alexander Huemer7b6673f2016-09-09 00:43:15 +020016bin_PROGRAMS = \
17 osmo-bsc_mgcp \
18 $(NULL)
Jacob Erlbeck909fac62014-05-08 14:08:37 +020019
Alexander Huemer7b6673f2016-09-09 00:43:15 +020020osmo_bsc_mgcp_SOURCES = \
21 mgcp_main.c \
22 $(NULL)
23
24osmo_bsc_mgcp_LDADD = \
Neels Hofmeyre9920f22017-07-10 15:07:22 +020025 $(top_builddir)/src/libosmo-legacy-mgcp/libosmo-legacy-mgcp.la \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020026 $(LIBOSMOCORE_LIBS) \
Neels Hofmeyre9920f22017-07-10 15:07:22 +020027 $(LIBOSMOVTY_LIBS) \
Harald Welte106743c2018-01-15 18:53:39 +010028 $(LIBOSMONETIF_LIBS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020029 $(LIBBCG729_LIBS) \
30 $(LIBRARY_GSM) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020031 $(NULL)