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>
This commit is contained in:
parent
ba15a598b0
commit
6dad77d64a
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue