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 | |
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')
-rw-r--r-- | util/crossgcc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index db8b769287..bb30fa41cc 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -10,12 +10,12 @@ DEST ?= $(CURDIR)/xgcc all all_with_gdb: $(MAKE) build-i386 build-x64 build-arm \ build-riscv build-aarch64 build-ppc64 build-nds32le \ - build_clang build_iasl build_make build_nasm + build_clang build_iasl build_nasm all_without_gdb: $(MAKE) SKIP_GDB=1 build-i386 build-x64 build-arm \ build-riscv build-aarch64 build-ppc64 build-nds32le \ - build_clang build_iasl build_make build_nasm + build_clang build_iasl build_nasm build_tools: build_gcc build_gdb |