mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 04:35:12 +02:00
13 lines
518 B
Makefile
13 lines
518 B
Makefile
# -*- Makefile -*-
|
|
|
|
AUTOMAKE_OPTIONS = foreign subdir-objects
|
|
SUBDIRS = extensions
|
|
|
|
.PHONY: tarball
|
|
tarball:
|
|
rm -Rf /tmp/xtables-addons-${PACKAGE_VERSION};
|
|
pushd ${top_srcdir} && git-archive --prefix=xtables-addons-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd;
|
|
pushd /tmp/xtables-addons-${PACKAGE_VERSION} && ./autogen.sh && popd;
|
|
tar -C /tmp -cjf xtables-addons-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root xtables-addons-${PACKAGE_VERSION}/;
|
|
rm -Rf /tmp/xtables-addons-${PACKAGE_VERSION};
|