mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 04:53:24 +00:00
This is an internal library simmilar to 'libmsc' in osmo-msc, which we don't expect to be used by other programs except osmo-mgw. Hence, there's no need to install it as a shared library, which introduces requirements about ABI/API stability and the like. osmo-bsc_nat uses libosmo-legacy-mgcp, and once we should rewrite osmo-bsc_nat, we might need some of the libosmo-mgcp related functions, but at this point it's unclear what exactly would be needed and if current libosmo-mgcp can provide that. As needed, we can introduce a related shared library at that point. Change-Id: Iba0a2c9c694e360356ac2ca584e97795281c6198
34 lines
734 B
Makefile
34 lines
734 B
Makefile
AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
|
|
|
|
## FIXME: automake >= 1.13 or autoconf >= 2.70 provide better suited AC_CONFIG_MACRO_DIRS for configure.ac
|
|
## remove line below when OE toolchain is updated to version which include those
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
AM_CPPFLAGS = \
|
|
$(all_includes) \
|
|
-I$(top_srcdir)/include \
|
|
$(NULL)
|
|
|
|
SUBDIRS = \
|
|
doc \
|
|
include \
|
|
src \
|
|
tests \
|
|
contrib \
|
|
$(NULL)
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = \
|
|
libosmo-legacy-mgcp.pc \
|
|
libosmo-mgcp-client.pc \
|
|
$(NULL)
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
EXTRA_DIST = git-version-gen osmoappdesc.py .version
|
|
|
|
@RELMAKE@
|
|
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|