Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58796 )
Change subject: util/crossgcc/Makefile: Clean up .PHONY definitions ......................................................................
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 --- M util/crossgcc/Makefile 1 file changed, 5 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/96/58796/1
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 34fb244..288861b 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -68,8 +68,9 @@ 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: