mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 18:49:43 +02:00
52 lines
1.8 KiB
Makefile
52 lines
1.8 KiB
Makefile
|
#############################################################
|
||
|
#
|
||
|
# iptables
|
||
|
#
|
||
|
#############################################################
|
||
|
IPTABLES_SOURCE_URL=http://www.netfilter.org/files
|
||
|
IPTABLES_SOURCE=iptables-1.2.9.tar.bz2
|
||
|
IPTABLES_BUILD_DIR=$(BUILD_DIR)/iptables-1.2.9
|
||
|
|
||
|
$(DL_DIR)/$(IPTABLES_SOURCE):
|
||
|
$(WGET) -P $(DL_DIR) $(IPTABLES_SOURCE_URL)/$(IPTABLES_SOURCE)
|
||
|
|
||
|
$(IPTABLES_BUILD_DIR)/.unpacked: $(DL_DIR)/$(IPTABLES_SOURCE)
|
||
|
bzcat $(DL_DIR)/$(IPTABLES_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
||
|
touch $(IPTABLES_BUILD_DIR)/.unpacked
|
||
|
|
||
|
$(IPTABLES_BUILD_DIR)/.configured: $(IPTABLES_BUILD_DIR)/.unpacked
|
||
|
# Allow patches. Needed for openwrt for instance.
|
||
|
$(SOURCE_DIR)/patch-kernel.sh $(IPTABLES_BUILD_DIR) $(SOURCE_DIR) iptables-*.patch
|
||
|
#
|
||
|
$(SED) "s;\[ -f /usr/include/netinet/ip6.h \];grep -q '__UCLIBC_HAS_IPV6__ 1' \
|
||
|
$(BUILD_DIR)/uClibc/include/bits/uClibc_config.h;" $(IPTABLES_BUILD_DIR)/Makefile
|
||
|
touch $(IPTABLES_BUILD_DIR)/.configured
|
||
|
|
||
|
$(IPTABLES_BUILD_DIR)/iptables: $(IPTABLES_BUILD_DIR)/.configured
|
||
|
$(TARGET_CONFIGURE_OPTS) \
|
||
|
$(MAKE) -C $(IPTABLES_BUILD_DIR) \
|
||
|
KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \
|
||
|
CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)"
|
||
|
|
||
|
$(TARGET_DIR)/sbin/iptables: $(IPTABLES_BUILD_DIR)/iptables
|
||
|
$(TARGET_CONFIGURE_OPTS) \
|
||
|
$(MAKE) -C $(IPTABLES_BUILD_DIR) \
|
||
|
KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \
|
||
|
CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \
|
||
|
DESTDIR=$(TARGET_DIR) install
|
||
|
$(STRIP) $(TARGET_DIR)/usr/sbin/iptables*
|
||
|
$(STRIP) $(TARGET_DIR)/usr/lib/iptables/*.so
|
||
|
rm -rf $(TARGET_DIR)/usr/man
|
||
|
|
||
|
iptables: $(TARGET_DIR)/sbin/iptables
|
||
|
|
||
|
iptables-source: $(DL_DIR)/$(IPTABLES_SOURCE)
|
||
|
|
||
|
iptables-clean:
|
||
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(IPTABLES_BUILD_DIR) uninstall
|
||
|
-$(MAKE) -C $(IPTABLES_BUILD_DIR) clean
|
||
|
|
||
|
iptables-dirclean:
|
||
|
rm -rf $(IPTABLES_BUILD_DIR)
|
||
|
|