X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/3fbba28a36fbb88219790491ef2460a264017012..275628fece4255b7125fc630529bd8d372987cdf:/toolchain/Makefile diff --git a/toolchain/Makefile b/toolchain/Makefile index c56f263bc..8a39def37 100644 --- a/toolchain/Makefile +++ b/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,15 +30,21 @@ $(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_$@ ] || { \ + $(MAKE) -C $(patsubst %-prepare,%,$@) prepare; \ + } @touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ %-compile: %-prepare - @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || $(MAKE) -C $(patsubst %-compile,%,$@) compile + @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \ + $(MAKE) -C $(patsubst %-compile,%,$@) compile; \ + } @touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ %-install: %-compile - @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || $(MAKE) -C $(patsubst %-install,%,$@) install + @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \ + $(MAKE) -C $(patsubst %-install,%,$@) install; \ + } @touch $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ %-clean: