mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-bsc.git
synced 2025-11-02 13:13:22 +00:00
This is the first step in creating this repository from the legacy openbsc.git. Like all other Osmocom repositories, keep the autoconf and automake files in the repository root. openbsc.git has been the sole exception, which ends now. Change-Id: I9c6f2a448d9cb1cc088cf1cf6918b69d7e69b4e7
27 lines
659 B
Makefile
27 lines
659 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 \
|
|
$(NULL)
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = openbsc.pc
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
EXTRA_DIST = git-version-gen osmoappdesc.py .version
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|