summaryrefslogtreecommitdiff
path: root/src/libosmo-mgcp-client/Makefile.am
blob: 01371d79d0d6af9614acb3576f4756f29cfbc0d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
AM_CPPFLAGS = \
	$(all_includes) \
	-I$(top_srcdir)/include \
	-I$(top_builddir)/include \
	-I$(top_builddir) \
	$(NULL)

AM_CFLAGS = \
	-Wall \
	$(LIBOSMOCORE_CFLAGS) \
	$(LIBOSMOVTY_CFLAGS) \
	$(COVERAGE_CFLAGS) \
	$(NULL)

AM_LDFLAGS = \
	$(LIBOSMOCORE_LIBS) \
	$(LIBOSMOVTY_LIBS) \
	$(COVERAGE_LDFLAGS) \
	$(NULL)

# This is not at all related to the release version, but a range of supported
# API versions. Read TODO_RELEASE in the source tree's root!
MGCP_CLIENT_LIBVERSION=3:0:0

lib_LTLIBRARIES = \
	libosmo-mgcp-client.la \
	$(NULL)

libosmo_mgcp_client_la_SOURCES = \
	mgcp_client.c \
	mgcp_client_vty.c \
	mgcp_client_fsm.c \
	$(NULL)

libosmo_mgcp_client_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(MGCP_CLIENT_LIBVERSION)