diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-31 22:12:20 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-31 22:12:20 +0000 |
commit | c0825e2276fc0d327ff1700d9445a40bbb73c02e (patch) | |
tree | 66386249b8f540ddeb7e5dcd37dec23190ea510a /package/openwrt/Makefile | |
parent | 1a2320030776c04bfc1b4e024fe6e8b59d729444 (diff) |
package wlc, jffs2root, mtd as "openwrt-utils"
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@493 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openwrt/Makefile')
-rw-r--r-- | package/openwrt/Makefile | 46 |
1 files changed, 33 insertions, 13 deletions
diff --git a/package/openwrt/Makefile b/package/openwrt/Makefile index 1b6de828a..4c129fd4c 100644 --- a/package/openwrt/Makefile +++ b/package/openwrt/Makefile @@ -2,6 +2,12 @@ include $(TOPDIR)/rules.mk +PKG_NAME := openwrt-utils +PKG_RELEASE := 1 +PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + SHARED_INCLUDE:=${shell pwd}/include libshared-compile libnvram-compile wlc-compile: @@ -13,13 +19,17 @@ libshared-install libnvram-install wlc-install: libshared-clean libnvram-clean wlc-clean: @$(MAKE) -C $(patsubst %-clean,%,$@) clean -$(TARGET_DIR)/sbin/mtd: mtd.c +$(PKG_IPK_DIR)/sbin/mtd: mtd.c + mkdir -p $(PKG_IPK_DIR)/sbin $(TARGET_CC) -o $@ $< - $(STRIP) $@ -$(TARGET_DIR)/sbin/jffs2root: jffs2root.c +$(PKG_IPK_DIR)/sbin/jffs2root: jffs2root.c + mkdir -p $(PKG_IPK_DIR)/sbin $(TARGET_CC) -o $@ $< - $(STRIP) $@ + +$(PKG_IPK_DIR)/usr/sbin/wlc: wlc.c libshared-compile + mkdir -p $(PKG_IPK_DIR)/usr/sbin + $(TARGET_CC) -o $@ $< -lshared -L./libshared -I$(SHARED_INCLUDE) # wlconf tool extracted from linksys firmware GPL.unpackedtree # WRT54GS_3_37_2_1109_US @@ -44,13 +54,23 @@ $(TARGET_DIR)/usr/sbin/wlconf: $(LINKSYS_WLCONF_DIR)/.unpacked install $(STRIP) $@ -source: -prepare: -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 +$(PKG_IPK): $(PKG_IPK_DIR)/sbin/mtd $(PKG_IPK_DIR)/sbin/jffs2root $(PKG_IPK_DIR)/usr/sbin/wlc + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_RELEASE) $(ARCH) + $(STRIP) $(PKG_IPK_DIR)/usr/sbin/* + $(STRIP) $(PKG_IPK_DIR)/sbin/* + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + +source: $(DL_DIR)/$(LINKSYS_WLCONF_TGZ) +prepare: $(LINKSYS_WLCONF_DIR)/.unpacked +compile: prepare libnvram-compile libshared-compile $(PKG_IPK) +install: libnvram-install libshared-install \ + $(TARGET_DIR)/usr/sbin/wlconf \ + $(IPKG_STATE_DIR)/info/$(PKG_NAME).list -clean: libnvram-clean libshared-clean wlc-clean - rm -rf $(LINKSYS_WLCONF_DIR) - rm -f $(TARGET_DIR)/sbin/mtd - rm -f $(TARGET_DIR)/sbin/jffs2root +clean: libshared-clean libnvram-clean + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) |