blob: c472ec18c15135e50464eb07699cb9f00e77e397 [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) \
Philipp Maier92a73cd2020-11-26 22:21:11 +010012 $(LIBOSMOABIS_CFLAGS) \
Neels Hofmeyr97df6912017-09-03 23:52:51 +020013 $(COVERAGE_CFLAGS) \
14 $(NULL)
15
16AM_LDFLAGS = \
17 $(LIBOSMOCORE_LIBS) \
Harald Weltee3b5de22017-10-28 12:05:22 +020018 $(LIBOSMOVTY_LIBS) \
Neels Hofmeyr97df6912017-09-03 23:52:51 +020019 $(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!
Pau Espin Pedrol6ccdaa22021-02-23 18:28:45 +010024MGCP_CLIENT_LIBVERSION=8: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 \
Philipp Maier8bda7a72018-01-17 14:32:23 +010033 mgcp_client_fsm.c \
Neels Hofmeyr538d2c52019-01-28 03:51:35 +010034 mgcp_client_endpoint_fsm.c \
Philipp Maier3f4a4cb2021-07-26 13:20:05 +020035 mgcp_client_pool.c \
Neels Hofmeyr97df6912017-09-03 23:52:51 +020036 $(NULL)
37
38libosmo_mgcp_client_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(MGCP_CLIENT_LIBVERSION)