mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
add wlc (wl replacement)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@373 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -2,13 +2,13 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
SHARED_INCLUDE:=${shell pwd}/include
|
||||
|
||||
libshared-compile libnvram-compile:
|
||||
libshared-compile libnvram-compile wlc-compile:
|
||||
@$(MAKE) -C $(patsubst %-compile,%,$@) compile
|
||||
|
||||
libshared-install libnvram-install:
|
||||
libshared-install libnvram-install wlc-install:
|
||||
@$(MAKE) -C $(patsubst %-install,%,$@) install
|
||||
|
||||
libshared-clean libnvram-clean:
|
||||
libshared-clean libnvram-clean wlc-clean:
|
||||
@$(MAKE) -C $(patsubst %-clean,%,$@) clean
|
||||
|
||||
$(TARGET_DIR)/sbin/mtd: mtd.c
|
||||
@@ -24,7 +24,6 @@ $(TARGET_DIR)/sbin/jffs2root: jffs2root.c
|
||||
LINKSYS_TGZ_SITE=http://openwrt.openbsd-geek.de
|
||||
LINKSYS_WLCONF_TGZ=linksys-wlconf.tar.gz
|
||||
LINKSYS_WLCONF_DIR=$(BUILD_DIR)/linksys-wlconf
|
||||
LINKSYS_WLCONF_TARGET_BINARY:=usr/sbin/wlconf
|
||||
|
||||
$(DL_DIR)/$(LINKSYS_WLCONF_TGZ):
|
||||
$(WGET) -P $(DL_DIR) $(LINKSYS_TGZ_SITE)/$(LINKSYS_WLCONF_TGZ)
|
||||
@@ -33,7 +32,7 @@ $(LINKSYS_WLCONF_DIR)/.unpacked: $(DL_DIR)/$(LINKSYS_WLCONF_TGZ)
|
||||
zcat $(DL_DIR)/$(LINKSYS_WLCONF_TGZ) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
||||
touch $(LINKSYS_WLCONF_DIR)/.unpacked
|
||||
|
||||
$(TARGET_DIR)/$(LINKSYS_WLCONF_TARGET_BINARY): $(LINKSYS_WLCONF_DIR)/.unpacked
|
||||
$(TARGET_DIR)/usr/sbin/wlconf: $(LINKSYS_WLCONF_DIR)/.unpacked
|
||||
$(MAKE) -C $(LINKSYS_WLCONF_DIR) INSTALLDIR=$(TARGET_DIR) \
|
||||
CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld STRIP="$(STRIP)" \
|
||||
CFLAGS="$(TARGET_CFLAGS) -I. -I$(SHARED_INCLUDE) \
|
||||
@@ -42,12 +41,13 @@ $(TARGET_DIR)/$(LINKSYS_WLCONF_TARGET_BINARY): $(LINKSYS_WLCONF_DIR)/.unpacked
|
||||
install
|
||||
$(STRIP) $@
|
||||
|
||||
|
||||
source:
|
||||
prepare:
|
||||
compile: libnvram-compile libshared-compile
|
||||
install: libnvram-install libshared-install $(TARGET_DIR)/sbin/mtd $(TARGET_DIR)/sbin/jffs2root $(TARGET_DIR)/$(LINKSYS_WLCONF_TARGET_BINARY)
|
||||
clean: libnvram-clean libshared-clean
|
||||
compile: libnvram-compile libshared-compile wlc-compile
|
||||
install: libnvram-install libshared-install wlc-install \
|
||||
$(TARGET_DIR)/sbin/mtd $(TARGET_DIR)/sbin/jffs2root $(TARGET_DIR)/usr/sbin/wlconf
|
||||
|
||||
clean: libnvram-clean libshared-clean wlc-clean
|
||||
rm -rf $(LINKSYS_WLCONF_DIR)
|
||||
rm -f $(TARGET_DIR)/sbin/mtd
|
||||
rm -f $(TARGET_DIR)/sbin/jffs2root
|
||||
|
||||
Reference in New Issue
Block a user