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
#############################################################
#
#
#############################################################
-
# In this section, we need .config
include .config.cmd
target_prepare:
$(MAKE) -C target prepare
+target_compile:
+ $(MAKE) -C target compile
+
target_install:
$(MAKE) -C target install
source: $(TARGETS_SOURCE)
+
+package/%:
+ $(MAKE) -C package $(patsubst package/%,%,$@)
+
+target/%:
+ $(MAKE) -C target $(patsubst target/%,%,$@)
+
+toolchain/%:
+ $(MAKE) -C toolchain $(patsubst toolchain/%,%,$@)
+
#############################################################
#
# Cleanup and misc junk
target_clean: image_clean
rm -rf $(TARGET_DIR)
+ rm -rf $(BUILD_DIR)/linux-*/root
clean: target_clean
@$(MAKE) -C $(CONFIG) clean