blob: b17477a4194f7adf984c913060880b4dcc11b2d1 [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
Neels Hofmeyra1fa2f42017-09-19 16:06:06 +020022# This is not at all related to the release version, but a range of supported
23# API versions. Read TODO_RELEASE in the source tree's root!
Neels Hofmeyrc221b7a2017-09-19 16:06:06 +020024MGCP_CLIENT_LIBVERSION=0:0:0
Neels Hofmeyr97df6912017-09-03 23:52:51 +020025
26lib_LTLIBRARIES = \
27 libosmo-mgcp-client.la \
28 $(NULL)
29
30libosmo_mgcp_client_la_SOURCES = \
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +020031 mgcp_client.c \
32 mgcp_client_vty.c \
Neels Hofmeyr97df6912017-09-03 23:52:51 +020033 ../libosmo-legacy-mgcp/mgcp_common.c \
34 $(NULL)
35
36libosmo_mgcp_client_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(MGCP_CLIENT_LIBVERSION)