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.
38 lines
636 B
38 lines
636 B
AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
AM_CPPFLAGS = \
|
|
$(all_includes) \
|
|
-I$(top_srcdir)/include \
|
|
$(NULL)
|
|
|
|
SUBDIRS = \
|
|
include \
|
|
src \
|
|
tests \
|
|
$(NULL)
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = \
|
|
libosmo-csn1.pc \
|
|
libosmo-gprs-gmm.pc \
|
|
libosmo-gprs-llc.pc \
|
|
libosmo-gprs-rlcmac.pc \
|
|
libosmo-gprs-sndcp.pc \
|
|
$(NULL)
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
EXTRA_DIST = \
|
|
.version \
|
|
contrib/libosmo-gprs.spec.in \
|
|
git-version-gen \
|
|
debian \
|
|
$(NULL)
|
|
|
|
@RELMAKE@
|
|
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|