You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
813 B
37 lines
813 B
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 = \
|
|
include \
|
|
src \
|
|
tests \
|
|
doc \
|
|
contrib \
|
|
$(NULL)
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
EXTRA_DIST = \
|
|
.version \
|
|
contrib/osmo-hnbgw.spec.in \
|
|
debian \
|
|
git-version-gen \
|
|
osmoappdesc.py \
|
|
$(NULL)
|
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
|
--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
|
|
|
|
@RELMAKE@
|
|
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|