1 # -*- Makefile -*- 2 3 ACLOCAL_AMFLAGS = -I m4 4 AUTOMAKE_OPTIONS = foreign subdir-objects 5 6 SUBDIRS = libiptc libxtables 7 if ENABLE_DEVEL 8 SUBDIRS += include 9 endif 10 if ENABLE_LIBIPQ 11 SUBDIRS += libipq 12 endif 13 SUBDIRS += utils 14 # Depends on libxtables: 15 SUBDIRS += extensions 16 # Depends on extensions/libext.a: 17 SUBDIRS += iptables 18 19 if ENABLE_NFTABLES 20 confdir = $(sysconfdir) 21 dist_conf_DATA = etc/ethertypes 22 endif 23 24 .PHONY: tarball 25 tarball: 26 rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION}; 27 pushd ${top_srcdir} && git archive --prefix=${PACKAGE_TARNAME}-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd; 28 pushd /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION} && ./autogen.sh && popd; 29 tar --exclude=*.t --exclude=iptables-test.py -C /tmp -cjf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root ${PACKAGE_TARNAME}-${PACKAGE_VERSION}/; 30 rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION}; 31 32 config.status: extensions/GNUmakefile.in \ 33 include/xtables-version.h.in include/iptables/internal.h.in 34