blob: 02b91773c67702544d3e938fd2506124e8c1097a [file] [log] [blame]
Neels Hofmeyr97df6912017-09-03 23:52:51 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 -I$(top_builddir) \
5 $(NULL)
6
7AM_CFLAGS = \
8 -Wall \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOVTY_CFLAGS) \
11 $(LIBOSMONETIF_CFLAGS) \
12 $(COVERAGE_CFLAGS) \
13 $(NULL)
14
15AM_LDFLAGS = \
16 $(LIBOSMOCORE_LIBS) \
17 $(LIBOSMOGSM_LIBS) \
18 $(LIBOSMONETIF_LIBS) \
19 $(COVERAGE_LDFLAGS) \
20 $(NULL)
21
22# This is _NOT_ the library release version, it's an API version.
23# Please read Chapter 6 "Library interface versions" of the libtool
24# documentation before making any modification
25MGCP_CLIENT_LIBVERSION=1:0:0
26
27lib_LTLIBRARIES = \
28 libosmo-mgcp-client.la \
29 $(NULL)
30
31libosmo_mgcp_client_la_SOURCES = \
32 mgcpgw_client.c \
33 mgcpgw_client_vty.c \
34 ../libosmo-legacy-mgcp/mgcp_common.c \
35 $(NULL)
36
37libosmo_mgcp_client_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(MGCP_CLIENT_LIBVERSION)