From: nbd Date: Sun, 30 Jul 2006 17:09:22 +0000 (+0000) Subject: create a package index X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=0251db4d4bb07fa5400c8d73411269a04e31674d create a package index git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4337 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/Makefile b/Makefile index a23f478d7c..85091f618e 100644 --- a/Makefile +++ b/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/package/Makefile b/package/Makefile index 629ce88109..85f852fd54 100644 --- a/package/Makefile +++ b/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) +