X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=toolchain%2FMakefile;h=8a39def3744165a2eccecfc4623dd9d01db8a917;hb=fe20d5fa6ebf13c5e8b05bb3b5962aa37a1e34e5;hp=c56f263bcc03c5d63840893df81ae5446e617f2d;hpb=3fbba28a36fbb88219790491ef2460a264017012;p=openwrt-10.03%2F.git 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: