aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--Makefile.inc15
2 files changed, 16 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index fde091468c..05da7bee10 100644
--- a/Makefile
+++ b/Makefile
@@ -93,8 +93,8 @@ DOXYGEN_OUTPUT_DIR := doxygen
all: real-all
-help::
- @echo '*** coreboot platform ***'
+help_coreboot help::
+ @echo '*** coreboot platform targets ***'
@echo ' Use "make [target] V=1" for extra build debug information'
@echo ' all - Build coreboot'
@echo ' clean - Remove coreboot build artifacts'
@@ -121,7 +121,7 @@ ifeq ($(strip $(HAVE_DOTCONFIG)),)
NOCOMPILE:=1
endif
ifneq ($(MAKECMDGOALS),)
-ifneq ($(filter %config %clean cross% lint% what-jenkins-does,$(MAKECMDGOALS)),)
+ifneq ($(filter %config %clean cross% clang iasl lint% what-jenkins-does,$(MAKECMDGOALS)),)
NOCOMPILE:=1
endif
ifeq ($(MAKECMDGOALS), %clean)
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