X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/2ed13d21844b870df5c5bee201aec6a7ab5ddbce..1fee2b88aa304ac8496843a4b6427ee45adea9fc:/openwrt/toolchain/Makefile 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,%,$@)-*