X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/a8d97b908183a4d38f48860f6467320bb48a9ea1..85fc1939a91db8e868cc5d10fc04216210ac62b8:/openwrt/Makefile

diff --git a/openwrt/Makefile b/openwrt/Makefile
index fd2a4ad8e..cd9423314 100644
--- a/openwrt/Makefile
+++ b/openwrt/Makefile
@@ -45,6 +45,8 @@ include $(TOPDIR)/rules.mk
 
 all: world
 
+.NOTPARALLEL:
+
 ##############################################################
 #
 # Build the toolchain
@@ -59,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
 
 #############################################################
 #
@@ -89,6 +94,9 @@ package_index:
 target_prepare:
 	$(MAKE) -C target prepare
 
+target_compile:
+	$(MAKE) -C target compile
+
 target_install:
 	$(MAKE) -C target install