diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2017-05-08 18:55:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-05-08 20:15:10 -0400 |
commit | 31b8cc80776c1b5a17abda6e0bbb5c615b9d90e4 (patch) | |
tree | 42e934817800dec6d6b642561d989807cc04a522 /Makefile | |
parent | 7c30f352c852bae2715ad65ac4a38ca9af7d7696 (diff) |
make help: add tools help target
Add a top-level Makefile help target for Userspace tools.
Also make each help "heading" end with a colon ':'.
Link: http://lkml.kernel.org/r/55c986ff-3966-3e47-2984-7349da2cce51@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1374,7 +1374,7 @@ help: | |||
1374 | @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ | 1374 | @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ |
1375 | echo ' (default: $(INSTALL_HDR_PATH))'; \ | 1375 | echo ' (default: $(INSTALL_HDR_PATH))'; \ |
1376 | echo '' | 1376 | echo '' |
1377 | @echo 'Static analysers' | 1377 | @echo 'Static analysers:' |
1378 | @echo ' checkstack - Generate a list of stack hogs' | 1378 | @echo ' checkstack - Generate a list of stack hogs' |
1379 | @echo ' namespacecheck - Name space analysis on compiled kernel' | 1379 | @echo ' namespacecheck - Name space analysis on compiled kernel' |
1380 | @echo ' versioncheck - Sanity check on version.h usage' | 1380 | @echo ' versioncheck - Sanity check on version.h usage' |
@@ -1384,7 +1384,7 @@ help: | |||
1384 | @echo ' headerdep - Detect inclusion cycles in headers' | 1384 | @echo ' headerdep - Detect inclusion cycles in headers' |
1385 | @$(MAKE) -f $(srctree)/scripts/Makefile.help checker-help | 1385 | @$(MAKE) -f $(srctree)/scripts/Makefile.help checker-help |
1386 | @echo '' | 1386 | @echo '' |
1387 | @echo 'Kernel selftest' | 1387 | @echo 'Kernel selftest:' |
1388 | @echo ' kselftest - Build and run kernel selftest (run as root)' | 1388 | @echo ' kselftest - Build and run kernel selftest (run as root)' |
1389 | @echo ' Build, install, and boot kernel before' | 1389 | @echo ' Build, install, and boot kernel before' |
1390 | @echo ' running kselftest on it' | 1390 | @echo ' running kselftest on it' |
@@ -1392,6 +1392,10 @@ help: | |||
1392 | @echo ' kselftest-merge - Merge all the config dependencies of kselftest to existed' | 1392 | @echo ' kselftest-merge - Merge all the config dependencies of kselftest to existed' |
1393 | @echo ' .config.' | 1393 | @echo ' .config.' |
1394 | @echo '' | 1394 | @echo '' |
1395 | @echo 'Userspace tools targets:' | ||
1396 | @echo ' use "make tools/help"' | ||
1397 | @echo ' or "cd tools; make help"' | ||
1398 | @echo '' | ||
1395 | @echo 'Kernel packaging:' | 1399 | @echo 'Kernel packaging:' |
1396 | @$(MAKE) $(build)=$(package-dir) help | 1400 | @$(MAKE) $(build)=$(package-dir) help |
1397 | @echo '' | 1401 | @echo '' |