aboutsummaryrefslogtreecommitdiff
path: root/util/crossgcc
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2021-11-01 16:24:35 +0000
committerFelix Held <felix-coreboot@felixheld.de>2021-11-02 17:36:23 +0000
commit6dad77d64abcebd05fe8d313dbb1050ca36864df (patch)
tree397df41b7fc71c90701449ee137a804fce6ee4e2 /util/crossgcc
parentba15a598b0415c6adfd9a5d3a37f1693cc11b5b0 (diff)
util/crossgcc/Makefile: Clean up .PHONY definitions
Order functionally: * first "all" and build-$tools * followed by clean * followed by the architecture targets The order was chosen this way because the architecture targets are the mostly likely to continue to grow. While at it, also fix the build_nasm mention (it was build-nasm) and add build_make. Change-Id: Id58338a512d44111b41503d4c14c08be50d51cde Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/58796 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/crossgcc')
-rw-r--r--util/crossgcc/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile
index 34fb244425..288861b901 100644
--- a/util/crossgcc/Makefile
+++ b/util/crossgcc/Makefile
@@ -68,8 +68,9 @@ clean: clean_tempfiles
distclean: clean
rm -rf tarballs
-.PHONY: build_gcc build_iasl build_clang all \
- build-i386 build-x64 build-arm \
- build-aarch64 build-riscv build-ppc64 build-nds32le build-nasm \
- clean distclean clean_tempfiles
+.PHONY: all build_gcc build_iasl build_clang build_make build_nasm \
+ clean distclean clean_tempfiles \
+ build-i386 build-x64 build-arm build-aarch64 \
+ build-riscv build-ppc64 build-nds32le
+
.NOTPARALLEL: