blob: 1eaa370fe79257318027fce838e52d80ecea6486 [file] [log] [blame]
Neels Hofmeyr97df6912017-09-03 23:52:51 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
Neels Hofmeyr67793542017-09-08 04:25:16 +02004 -I$(top_builddir)/include \
Neels Hofmeyr97df6912017-09-03 23:52:51 +02005 -I$(top_builddir) \
6 $(NULL)
7
8AM_CFLAGS = \
9 -Wall \
10 $(LIBOSMOCORE_CFLAGS) \
11 $(LIBOSMOVTY_CFLAGS) \
Neels Hofmeyr97df6912017-09-03 23:52:51 +020012 $(COVERAGE_CFLAGS) \
13 $(NULL)
14
15AM_LDFLAGS = \
16 $(LIBOSMOCORE_LIBS) \
Harald Weltee3b5de22017-10-28 12:05:22 +020017 $(LIBOSMOVTY_LIBS) \
Neels Hofmeyr97df6912017-09-03 23:52:51 +020018 $(COVERAGE_LDFLAGS) \
19 $(NULL)
20
Neels Hofmeyra1fa2f42017-09-19 16:06:06 +020021# This is not at all related to the release version, but a range of supported
22# API versions. Read TODO_RELEASE in the source tree's root!
Harald Welte5852a782017-10-28 12:54:16 +020023MGCP_CLIENT_LIBVERSION=1:0:1
Neels Hofmeyr97df6912017-09-03 23:52:51 +020024
25lib_LTLIBRARIES = \
26 libosmo-mgcp-client.la \
27 $(NULL)
28
29libosmo_mgcp_client_la_SOURCES = \
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +020030 mgcp_client.c \
31 mgcp_client_vty.c \
Neels Hofmeyr97df6912017-09-03 23:52:51 +020032 $(NULL)
33
34libosmo_mgcp_client_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(MGCP_CLIENT_LIBVERSION)