summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-20 17:01:30 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-20 17:01:30 +0000
commit08479c3ef6123d8b8156fd8e5e9c1763216e0503 (patch)
treed1fffacb2df96b810546676651d6f394a8c54fe3 /Makefile
parent7fb7f1c43b806786372a023814fc914a2fb7cc76 (diff)
add openwrt image builder to sdk
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@688 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e96618818..cd9423314 100644
--- a/Makefile
+++ b/Makefile
@@ -61,8 +61,11 @@ toolchain_install:
#
##############################################################
-package_install: toolchain
- $(MAKE) -C package compile install
+package_compile: target_compile
+ $(MAKE) -C package compile
+
+package_install: package_compile toolchain
+ $(MAKE) -C package install
#############################################################
#
@@ -91,6 +94,9 @@ package_index:
target_prepare:
$(MAKE) -C target prepare
+target_compile:
+ $(MAKE) -C target compile
+
target_install:
$(MAKE) -C target install