summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--package/Makefile3
2 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a23f478d7..85091f618 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 629ce8810..85f852fd5 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)
+