diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-07-30 17:09:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-07-30 17:09:22 +0000 |
commit | b4e7510acf710c26775bd9b03880c9075ffe77a4 (patch) | |
tree | b37ec6936d346625b451eecb4e19c4d07b53a22e | |
parent | af8a98116ebd7b51e1b6c89f49475f555eaa66ef (diff) | |
download | mtk-20170518-b4e7510acf710c26775bd9b03880c9075ffe77a4.zip mtk-20170518-b4e7510acf710c26775bd9b03880c9075ffe77a4.tar.gz mtk-20170518-b4e7510acf710c26775bd9b03880c9075ffe77a4.tar.bz2 |
create a package index
SVN-Revision: 4337
-rw-r--r-- | openwrt/Makefile | 1 | ||||
-rw-r--r-- | openwrt/package/Makefile | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/openwrt/Makefile b/openwrt/Makefile index a23f478..85091f6 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -116,6 +116,7 @@ world: .config FORCE $(MAKE) package/compile $(MAKE) package/install $(MAKE) target/install + $(MAKE) package/index clean: FORCE rm -rf build_* bin diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 629ce88..85f852f 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -55,3 +55,6 @@ install: rm -rf $(BUILD_DIR)/root $(MAKE) install-targets +index: FORCE + (cd $(PACKAGE_DIR); $(STAGING_DIR)/usr/bin/ipkg-make-index . > Packages) + |