mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 05:05:12 +02:00

Because we are likely to be having more userspace programs soon, and reproducing manual makefiles is a bad idea, make extensions/ ready for automake traversal. The build pattern now is: 1. toplevel Makefile.am starts off with extensions/Makefile.am 2. Makefile.am a. builds programs in current directory b. runs Kbuild - only from extensions/Makefile.am (so it does not get reinvoked from case 2cII) - Kbuild recurses on its own c. runs Mbuild I. builds iptables shared libraries in current directory II. runs Makefile.am in each subdir (goto step 2.)
26 lines
683 B
Makefile
26 lines
683 B
Makefile
# -*- Makefile -*-
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
SUBDIRS = extensions
|
|
|
|
man_MANS := xtables-addons.8
|
|
|
|
.PHONY: FORCE
|
|
FORCE:
|
|
|
|
xtables-addons.8: FORCE
|
|
${MAKE} -f Makefile.mans all;
|
|
|
|
install-exec-hook:
|
|
depmod -a || :;
|
|
|
|
config.status: Makefile.iptrules.in
|
|
|
|
.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};
|