[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20171017151848.3087-1-shuahkh@osg.samsung.com>
Date: Tue, 17 Oct 2017 09:18:48 -0600
From: Shuah Khan <shuahkh@....samsung.com>
To: yamada.masahiro@...ionext.com, mmarek@...e.com,
rdunlap@...radead.org
Cc: Shuah Khan <shuahkh@....samsung.com>, linux-kbuild@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] Makefile: add targets for config-help and pkg-help
Change to enable config help and package help from the main make level
to make it easier to use. It has become difficult to find config help
and pkg help specific output from the "help" information.
Signed-off-by: Shuah Khan <shuahkh@....samsung.com>
---
Makefile | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Makefile b/Makefile
index 46bfb0ed2257..1d6f86df1b6c 100644
--- a/Makefile
+++ b/Makefile
@@ -1441,6 +1441,13 @@ help:
@echo 'Execute "make" or "make all" to build all targets marked with [*] '
@echo 'For further info see the ./README file'
+PHONY += config-help
+config-help:
+ @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
+
+PHONY += pkg-help
+pkg-help:
+ @$(MAKE) $(build)=$(package-dir) help
help-board-dirs := $(addprefix help-,$(board-dirs))
--
2.11.0
Powered by blists - more mailing lists