Makefile.inc: make sure .xcompile is removed when building tools

Most of the toolchain build targets already ran clean-for-update, but
there were a few that didn't.  Add the clean to those targets.

Change-Id: I7faad32ac8bb1815e0c58e7d142ca2dbfc877896
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12571
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Martin Roth 2015-11-29 11:28:26 -07:00
parent 6dc8570719
commit 317b58234a
1 changed files with 4 additions and 4 deletions

View File

@ -489,7 +489,7 @@ help::
# For the toolchain builds, use CPUS=x to use multiple processors to build
# use BUILDGCC_OPTIONS= to set any crossgcc command line options
# Example: BUILDGCC_OPTIONS='-t' will keep temporary files after build
crossgcc:
crossgcc: clean-for-update
$(MAKE) -C util/crossgcc all_without_gdb SKIP_CLANG=1
.PHONY: crossgcc crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 \
@ -515,13 +515,13 @@ crossgcc-mips: clean-for-update
crossgcc-riscv: clean-for-update
$(MAKE) -C util/crossgcc build-riscv SKIP_GDB=1
crosstools:
crosstools: clean-for-update
$(MAKE) -C util/crossgcc all_with_gdb SKIP_CLANG=1
iasl:
iasl: clean-for-update
$(MAKE) -C util/crossgcc build_iasl
clang:
clang: clean-for-update
$(MAKE) -C util/crossgcc build_clang
crosstools-i386: clean-for-update