From b2a976649f2ef921790a0e84cd1483cf6f2fac99 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Sat, 17 Mar 2007 02:54:16 +0000
Subject: [PATCH] speed up package/install

SVN-Revision: 6588
---
 package/Makefile | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/package/Makefile b/package/Makefile
index bf7090d04d..799456b1ba 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -25,7 +25,20 @@ $(STAMP_DIR) $(TARGET_DIR):
 %-prereq: $(STAMP_DIR) $(TARGET_DIR)
 	$(MAKE) -C $(patsubst %-prereq,%,$@) prereq
 
-$(eval $(call default_subtargets,$(TARGET_DIR)))
+%-download: FORCE
+	$(MAKE) -C $(patsubst %-download,%,$@) download
+
+%-prepare: $(TARGET_DIR) FORCE
+	$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
+
+%-compile: %-prepare
+	$(MAKE) -C $(patsubst %-compile,%,$@) compile
+
+%-install:
+	$(MAKE) -C $(patsubst %-install,%,$@) install
+
+%-clean: FORCE
+	$(MAKE) -C $(patsubst %-clean,%,$@) clean
 
 ifeq ($(SDK),1)
 GENDEP_OPTS := -s
-- 
GitLab