X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/c65955aa6a15b044fcdb98b09544536a57a6692c..e42cd4fa982f6a8a7ee8516bb496e8dda178c711:/openwrt/Makefile diff --git a/openwrt/Makefile b/openwrt/Makefile index 86367fefa..2fdc7647d 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -34,7 +34,7 @@ CONFIG_DEFCONFIG = .defconfig 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)),) @@ -47,6 +47,7 @@ include $(TOPDIR)/rules.mk all: world .NOTPARALLEL: +.PHONY: all world clean dirclean distclean image_clean target_clean source configtest ############################################################# # @@ -60,8 +61,7 @@ include .config.cmd 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 @@ -96,6 +96,7 @@ toolchain/%: # ############################################################# root_clean: + @$(TRACE) root_clean rm -rf $(BUILD_DIR)/linux-*/root $(BUILD_DIR)/root target_clean: root_clean @@ -106,6 +107,7 @@ target_clean: root_clean clean: dirclean dirclean: + @$(TRACE) dirclean @$(MAKE) -C $(CONFIG) clean rm -rf $(BUILD_DIR) @@ -174,7 +176,3 @@ defconfig: $(CONFIG)/conf -./scripts/configtest.pl endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y) - -.PHONY: dummy subdirs release distclean clean config oldconfig \ - menuconfig tags check test depend -