diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-01-20 15:33:11 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-06-17 11:20:30 +0000 |
commit | 91fb139956bcbd5771fd7ec1e474c16122c1b547 (patch) | |
tree | 8bd679fc9975750bcd3d28d9aec231694106d4ab /util/crossgcc/Makefile.inc | |
parent | c66c15334adb100eb55253cb03dbc4605becee46 (diff) | |
download | coreboot-91fb139956bcbd5771fd7ec1e474c16122c1b547.tar.xz |
crossgcc: Remove "Make"
In its current state, it draws more dependencies in than it solves
which makes it useless.
Change-Id: I08f592731c3da2ac19e1f93682256f559a067fc4
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38483
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util/crossgcc/Makefile.inc')
-rw-r--r-- | util/crossgcc/Makefile.inc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/util/crossgcc/Makefile.inc b/util/crossgcc/Makefile.inc index 0735b7d624..582e600c04 100644 --- a/util/crossgcc/Makefile.inc +++ b/util/crossgcc/Makefile.inc @@ -9,7 +9,6 @@ help_toolchain help:: @echo ' crossgcc-clean - Remove all built coreboot cross-compilers' @echo ' iasl - Build coreboot IASL compiler (built by all cross targets)' @echo ' clang - Build coreboot clang compiler' - @echo ' gnumake - Build coreboot make' @echo ' nasm - Build coreboot nasm' @echo ' test-toolchain - Reports if toolchain components are out of date' @echo ' crossgcc-ARCH - Build cross-compiler for specific architecture' @@ -29,7 +28,7 @@ crossgcc: clean-for-update crossgcc-riscv crossgcc-power8 crossgcc-clean iasl \ clang crosstools-i386 crosstools-x64 crosstools-arm \ crosstools-aarch64 crosstools-riscv crosstools-power8 \ - jenkins-build-toolchain gnumake nasm + jenkins-build-toolchain nasm $(foreach arch,$(TOOLCHAIN_ARCHES),crossgcc-$(arch)): clean-for-update $(MAKE) -C util/crossgcc $(patsubst crossgcc-%,build-%,$@) build_iasl SKIP_GDB=1 @@ -43,9 +42,6 @@ iasl: clean-for-update clang: clean-for-update $(MAKE) -C util/crossgcc build_clang -gnumake: clean-for-update - $(MAKE) -C util/crossgcc build_make - nasm: clean-for-update $(MAKE) -C util/crossgcc build_nasm |