summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2015-11-25 12:50:25 -0700
committerMartin Roth <martinroth@google.com>2015-12-06 18:35:23 +0100
commitc24f3d615a2a8ed7e251f6ac88d305c8345d3ea3 (patch)
treefae0addca187607aa71243c1252444114f94f832 /Makefile
parent7b45d07cff5827f1014cd704f746b729edbf5c7b (diff)
downloadcoreboot-c24f3d615a2a8ed7e251f6ac88d305c8345d3ea3.tar.gz
coreboot-c24f3d615a2a8ed7e251f6ac88d305c8345d3ea3.tar.bz2
coreboot-c24f3d615a2a8ed7e251f6ac88d305c8345d3ea3.zip
Makefile: Individualize help targets & set as non-compile targets
- Including the help targets in the list of NOCOMPILE targets means they can run even if the toolchain is mucked up. Since they contain info on building the toolchin, this is useful. - Separate the three current parts of the help target into individual components: help_coreboot, help_toolchain, and help_kconfig. This is mostly for the help_toolchin target which will be printed out by toolchain.inc. Change-Id: I365d95fd63e22bddd122fb1fede6f04270e03d63 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/12542 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 05da7bee1069..99d71395ede1 100644
--- a/Makefile
+++ b/Makefile
@@ -121,7 +121,7 @@ ifeq ($(strip $(HAVE_DOTCONFIG)),)
NOCOMPILE:=1
endif
ifneq ($(MAKECMDGOALS),)
-ifneq ($(filter %config %clean cross% clang iasl lint% what-jenkins-does,$(MAKECMDGOALS)),)
+ifneq ($(filter %config %clean cross% clang iasl lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
NOCOMPILE:=1
endif
ifeq ($(MAKECMDGOALS), %clean)