diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-02-04 14:09:54 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-02-04 14:09:54 +0100 |
commit | bd82d030011cd8b9655e5ded6b6df9343b42a6bd (patch) | |
tree | de82d886dfea0cb7dbb6e80436218a25cb211bc3 /Makefile.am |
Imported Upstream version 3.22upstream/3.22
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..519aa55 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,22 @@ +# -*- Makefile -*- + +PACKAGE = ${PACKAGE_NAME} +ACLOCAL_AMFLAGS = -I m4 +SUBDIRS = doc include src + +pkgconfig_DATA = libHX.pc + +${pkgconfig_DATA}: ${top_builddir}/config.status + +tmpdir := $(shell mktemp -dtu) +packer = xz +packext = .tar.xz + +.PHONY: tarball +tarball: +# do not use mkdir_p here. + mkdir ${tmpdir}; + pushd ${top_srcdir} && git archive --prefix=${PACKAGE_NAME}-${PACKAGE_VERSION}/ HEAD | tar -C ${tmpdir} -x && popd; + pushd ${tmpdir}/${PACKAGE_NAME}-${PACKAGE_VERSION} && ./autogen.sh && pushd doc/ && ./generate && popd && popd; + tar --use=${packer} -C ${tmpdir} -cf ${PACKAGE_NAME}-${PACKAGE_VERSION}${packext} --owner=root --group=root ${PACKAGE_NAME}-${PACKAGE_VERSION}/; + rm -Rf ${tmpdir}; |