diff options
author | Martin Roth <martinroth@google.com> | 2015-11-25 11:50:04 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-11-27 18:09:55 +0100 |
commit | 4eea174695564f9bef4da5157c0e1684cb3ae7af (patch) | |
tree | ddbc11fb3441b0686249129ee65b89fbd03a3143 /Makefile.inc | |
parent | dde96fb2f13ae3e21d6a6fff0fe1f2f422dbecf6 (diff) |
Makefile.inc: Add build targets for IASL & Clang
- Add specific build targets for IASL & CLANG and help for those targets
- Consolidate tool target .PHONY entries
Change-Id: If2960d75310495d9e486b3a08808463a2ff0c644
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12541
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc index 7fe1e17296..a1c882b6f0 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -451,6 +451,8 @@ help:: @echo ' crossgcc - Build coreboot cross-compilers for all platforms' @echo ' crosstools - Build coreboot cross-compiler and GDB for all platforms' @echo ' crossgcc-clean - Remove all built coreboot cross-compilers' + @echo ' iasl - Build coreboot IASL compiler (built by all cross targets)' + @echo ' clang - Build coreboot clang compiler' @echo ' crossgcc-ARCH - Build cross-compiler for specific architecture' @echo ' crosstools-ARCH - Build cross-compiler with GDB for specific architecture' @echo ' ARCH can be "i386", "x64", "arm", "aarch64", "mips", or "riscv"' @@ -463,7 +465,11 @@ help:: crossgcc: $(MAKE) -C util/crossgcc all_without_gdb SKIP_CLANG=1 -.PHONY: crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 crossgcc-mips crossgcc-riscv +.PHONY: crossgcc crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 \ + crossgcc-mips crossgcc-riscv crossgcc-clean iasl clang tools \ + crosstools-i386 crosstools-x64 crosstools-arm crosstools-aarch64 \ + crosstools-mips crosstools-riscv + crossgcc-i386: clean-for-update $(MAKE) -C util/crossgcc build-i386 SKIP_GDB=1 @@ -485,7 +491,12 @@ crossgcc-riscv: clean-for-update crosstools: $(MAKE) -C util/crossgcc all_with_gdb SKIP_CLANG=1 -.PHONY: crosstools-i386 crosstools-x64 crosstools-arm crosstools-aarch64 crosstools-mips crosstools-riscv +iasl: + $(MAKE) -C util/crossgcc build_iasl + +clang: + $(MAKE) -C util/crossgcc build_clang + crosstools-i386: clean-for-update $(MAKE) -C util/crossgcc build-i386 |