CONFIG = package/config
noconfig_targets := menuconfig config oldconfig randconfig \
- defconfig allyesconfig allnoconfig release tags
+ defconfig allyesconfig allnoconfig tags
# Pull in the user's configuration file
ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
all: world
.NOTPARALLEL:
+.PHONY: all world clean dirclean distclean image_clean target_clean source configtest
#############################################################
#
world: $(DL_DIR) $(BUILD_DIR) configtest
$(MAKE) toolchain/install target/compile package/compile root_clean package/install target/install package_index
-
-.PHONY: all world clean dirclean distclean image_clean target_clean source configtest
+ @$(TRACE) Build complete.
configtest:
-cp .config .config.test
#
#############################################################
root_clean:
- @$(TRACE) Cleaning...
+ @$(TRACE) root_clean
rm -rf $(BUILD_DIR)/linux-*/root $(BUILD_DIR)/root
target_clean: root_clean
clean: dirclean
dirclean:
- @$(TRACE) Cleaning...
+ @$(TRACE) dirclean
@$(MAKE) -C $(CONFIG) clean
rm -rf $(BUILD_DIR)
-./scripts/configtest.pl
endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
-
-.PHONY: dummy subdirs release distclean clean config oldconfig \
- menuconfig tags check test depend
-