#--------------------------------------------------------------
TOPDIR=${shell pwd}
export TOPDIR
+ifneq ($(DEVELOPER),)
+CONFIG_CONFIG_IN = Config.in.devel
+else
CONFIG_CONFIG_IN = Config.in
+endif
CONFIG_DEFCONFIG = .defconfig
CONFIG = package/config
all: world
+.NOTPARALLEL:
+
##############################################################
#
# Build the toolchain
#
##############################################################
-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
#############################################################
#
target_prepare:
$(MAKE) -C target prepare
+target_compile:
+ $(MAKE) -C target compile
+
target_install:
$(MAKE) -C target install