diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-11-17 18:59:51 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-29 20:45:13 +0000 |
commit | 52607fd91e55131dd36824281635141cbe1eedf3 (patch) | |
tree | 8463115100c30815c28da64945963bb6f9dd672a /util/crossgcc | |
parent | 0f6de92fc38a9c814ae7a55ca86c19075e7184f1 (diff) |
crossgcc/Makefile: Remove obsolete target build_make
coreboot does not build gnumake anymore since commit 91fb1399
Change-Id: I0f159fc912d09ebde6ac7ba5be83933aa251f1d5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59397
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Diffstat (limited to 'util/crossgcc')
-rw-r--r-- | util/crossgcc/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 288861b901..cb552dd084 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -27,9 +27,6 @@ ifeq ($(SKIP_CLANG),) bash ./buildgcc -P clang $(if $(CPUS),-j $(CPUS)) $(if $(KEEP_SOURCES),-t) $(BUILDGCC_OPTIONS) -d $(DEST) endif -build_make: - bash ./buildgcc -P make $(if $(CPUS),-j $(CPUS)) $(if $(KEEP_SOURCES),-t) $(BUILDGCC_OPTIONS) -d $(DEST) - build_nasm: bash ./buildgcc -P nasm $(if $(CPUS),-j $(CPUS)) $(if $(KEEP_SOURCES),-t) $(BUILDGCC_OPTIONS) -d $(DEST) @@ -68,7 +65,7 @@ clean: clean_tempfiles distclean: clean rm -rf tarballs -.PHONY: all build_gcc build_iasl build_clang build_make build_nasm \ +.PHONY: all build_gcc build_iasl build_clang build_nasm \ clean distclean clean_tempfiles \ build-i386 build-x64 build-arm build-aarch64 \ build-riscv build-ppc64 build-nds32le |