mirror of https://github.com/hak5/openwrt.git
parent
9616c3fcf4
commit
5183793523
|
@ -1,3 +0,0 @@
|
|||
ifeq ($(strip $(BR2_PACKAGE_BUSYBOX)),y)
|
||||
TARGETS+=busybox
|
||||
endif
|
|
@ -60,3 +60,12 @@ busybox-clean:
|
|||
|
||||
busybox-dirclean:
|
||||
rm -rf $(BUSYBOX_DIR)
|
||||
|
||||
#############################################################
|
||||
#
|
||||
# Toplevel Makefile options
|
||||
#
|
||||
#############################################################
|
||||
ifeq ($(strip $(BR2_PACKAGE_BUSYBOX)),y)
|
||||
TARGETS+=busybox
|
||||
endif
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
ifeq ($(strip $(BR2_PACKAGE_DNSMASQ)),y)
|
||||
TARGETS+=dnsmasq
|
||||
endif
|
|
@ -48,3 +48,7 @@ dnsmasq-clean:
|
|||
|
||||
dnsmasq-dirclean:
|
||||
rm -rf $(DNSMASQ_DIR)
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_DNSMASQ)),y)
|
||||
TARGETS+=dnsmasq
|
||||
endif
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
ifeq ($(strip $(BR2_PACKAGE_DROPBEAR_SSHD)),y)
|
||||
TARGETS+=dropbear_sshd
|
||||
endif
|
|
@ -77,3 +77,6 @@ dropbear_sshd-clean:
|
|||
dropbear_sshd-dirclean:
|
||||
rm -rf $(DROPBEAR_SSHD_DIR)
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_DROPBEAR_SSHD)),y)
|
||||
TARGETS+=dropbear_sshd
|
||||
endif
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
ifeq ($(strip $(BR2_PACKAGE_EBTABLES)),y)
|
||||
TARGETS+=ebtables
|
||||
endif
|
|
@ -3,7 +3,7 @@
|
|||
# ebtables
|
||||
#
|
||||
#############################################################
|
||||
#
|
||||
|
||||
EBTABLES_SOURCE_URL=http://umn.dl.sourceforge.net/sourceforge/ebtables/
|
||||
EBTABLES_SOURCE=ebtables-v2.0.6.tar.gz
|
||||
EBTABLES_BUILD_DIR=$(BUILD_DIR)/ebtables-v2.0.6
|
||||
|
@ -25,7 +25,7 @@ $(TARGET_DIR)/$(EBTABLES_TARGET_BINARY): $(EBTABLES_BUILD_DIR)/ebtables
|
|||
cp -af $(EBTABLES_BUILD_DIR)/ebtables $(TARGET_DIR)/$(EBTABLES_TARGET_BINARY)
|
||||
$(STRIP) $(TARGET_DIR)/$(EBTABLES_TARGET_BINARY)
|
||||
|
||||
ebtables: linux $(TARGET_DIR)/$(EBTABLES_TARGET_BINARY)
|
||||
ebtables: $(TARGET_DIR)/$(EBTABLES_TARGET_BINARY)
|
||||
|
||||
ebtables-source: $(DL_DIR)/$(EBTABLES_SOURCE)
|
||||
|
||||
|
@ -35,3 +35,7 @@ ebtables-clean:
|
|||
|
||||
ebtables-dirclean:
|
||||
rm -rf $(EBTABLES_BUILD_DIR)
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_EBTABLES)),y)
|
||||
TARGETS+=ebtables
|
||||
endif
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
ifeq ($(strip $(BR2_PACKAGE_IPTABLES)),y)
|
||||
TARGETS+=iptables
|
||||
endif
|
|
@ -39,7 +39,7 @@ $(TARGET_DIR)/usr/sbin/iptables: $(IPTABLES_BUILD_DIR)/iptables
|
|||
$(STRIP) $(TARGET_DIR)/usr/lib/iptables/*.so
|
||||
rm -rf $(TARGET_DIR)/usr/man
|
||||
|
||||
iptables: $(TARGET_DIR)/usr/sbin/iptables
|
||||
iptables: kernel-headers $(TARGET_DIR)/usr/sbin/iptables
|
||||
|
||||
iptables-source: $(DL_DIR)/$(IPTABLES_SOURCE)
|
||||
|
||||
|
@ -49,3 +49,7 @@ iptables-clean:
|
|||
|
||||
iptables-dirclean:
|
||||
rm -rf $(IPTABLES_BUILD_DIR)
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_IPTABLES)),y)
|
||||
TARGETS+=iptables
|
||||
endif
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
ifeq ($(strip $(BR2_PACKAGE_SED)),y)
|
||||
TARGETS+=sed
|
||||
endif
|
|
@ -133,4 +133,6 @@ sed-clean:
|
|||
sed-dirclean:
|
||||
rm -rf $(SED_DIR2)
|
||||
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_SED)),y)
|
||||
TARGETS+=sed
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue