X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/2ed13d21844b870df5c5bee201aec6a7ab5ddbce..32a39c87dabcd1c7714abd19fa6aaddec95f1e76:/openwrt/toolchain/Makefile?ds=sidebyside

diff --git a/openwrt/toolchain/Makefile b/openwrt/toolchain/Makefile
index c56f263bc..c99116db6 100644
--- a/openwrt/toolchain/Makefile
+++ b/openwrt/toolchain/Makefile
@@ -1,6 +1,6 @@
 # Main makefile for the toolchain
 include $(TOPDIR)/rules.mk
-TARGETS:=sed utils binutils gcc uClibc ipkg-utils gdb libmissing
+TARGETS:=sed utils binutils gcc uClibc ipkg-utils gdb libnotimpl
 
 TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS))
 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
@@ -30,18 +30,28 @@ $(TOOL_BUILD_DIR):
 	@mkdir -p $(TOOL_BUILD_DIR)
 
 %-prepare: $(TOOLCHAIN_STAMP_DIR) $(STAGING_DIR) $(TOOL_BUILD_DIR)
-	@[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || $(MAKE) -C $(patsubst %-prepare,%,$@) prepare
+	@[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \
+		$(TRACE) toolchain/$(patsubst %-prepare,%,$@)/prepare; \
+		$(MAKE) -C $(patsubst %-prepare,%,$@) prepare $(MAKE_TRACE); \
+	}
 	@touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@
 
 %-compile: %-prepare 
-	@[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || $(MAKE) -C $(patsubst %-compile,%,$@) compile
+	@[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \
+		$(TRACE) toolchain/$(patsubst %-compile,%,$@)/compile; \
+		$(MAKE) -C $(patsubst %-compile,%,$@) compile $(MAKE_TRACE); \
+	}
 	@touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@
 
 %-install: %-compile
-	@[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || $(MAKE) -C $(patsubst %-install,%,$@) install
+	@[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \
+		$(TRACE) toolchain/$(patsubst %-install,%,$@)/install; \
+		$(MAKE) -C $(patsubst %-install,%,$@) install $(MAKE_TRACE); \
+	}
 	@touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@
 
 %-clean:
-	@$(MAKE) -C $(patsubst %-clean,%,$@) clean
+	$(TRACE) toolchain/$(patsubst %-clean,%,$@)/clean
+	@$(MAKE) -C $(patsubst %-clean,%,$@) clean $(MAKE_TRACE)
 	@rm -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$(patsubst %-clean,%,$@)-*