mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-hlr.git
synced 2025-11-02 21:23:30 +00:00
This imports the code from osmo-msc 6afef893e17bce67e4d4119acd34d480ed03ba77 with minimal changes to make it compile. Symbol renaming ot osmo_ prefix is done separately in a follow-up patch to have a as-clean-as-possible import first. Requires: libosmocore.git Change-Id Ie36729996abd30b84d1c30a09f62ebc6a9794950 Change-Id: Ief50054ad135551625b684ed8a0486f7af0b2940
25 lines
385 B
Makefile
25 lines
385 B
Makefile
AUTOMAKE_OPTIONS = foreign dist-bzip2
|
|
|
|
SUBDIRS = \
|
|
doc \
|
|
src \
|
|
include \
|
|
sql \
|
|
tests \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
.version \
|
|
$(NULL)
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libosmo-gsup-client.pc
|
|
|
|
@RELMAKE@
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|