From 59c8b4ea41b37610cf12de0d234545399f329e9d Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 31 May 2006 20:00:21 +0000 Subject: [PATCH] add package install target SVN-Revision: 3869 --- openwrt/package/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index adeb238d43..12ea942a6a 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -16,6 +16,10 @@ $(STAMP_DIR) $(TARGET_DIR): @echo "-> make $@" $(MAKE) -C $(patsubst %-compile,%,$@) compile +%-install: $(STAMP_DIR) $(TARGET_DIR) + @echo "-> make $@" + $(MAKE) -C $(patsubst %-install,%,$@) install + %-clean: $(STAMP_DIR) $(TARGET_DIR) $(MAKE) -C $(patsubst %-clean,%,$@) clean