diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2016-03-11 18:41:10 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-19 16:41:26 +0100 |
commit | 0a767deba004c920e7824543380cffbb298507f8 (patch) | |
tree | 9ab557304dc16a3570c574e693775a31149b327a | |
parent | 84c825f8e893bfb56847ab4a880c46066a41744f (diff) | |
download | buildroot-0a767deba004c920e7824543380cffbb298507f8.tar.gz buildroot-0a767deba004c920e7824543380cffbb298507f8.zip |
core: also display the custom help with our main help
The patch merges the custom help, introduced in the previous patch, at
the end of our internal help.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Jérôme Pouiller <jezz@sysmic.org>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -893,7 +893,9 @@ endif rm -rf $(BR2_CONFIG) $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/..config.tmp \ $(CONFIG_DIR)/.auto.deps $(BR2_EXTERNAL_FILE) -help: +help: help-internal help-custom + +help-internal: @echo 'Cleaning:' @echo ' clean - delete all files created by build' @echo ' distclean - delete all non-source files (including .config)' @@ -966,7 +968,6 @@ endif @echo ' source-check - check selected packages for valid download URLs' @echo ' external-deps - list external packages used' @echo ' legal-info - generate info about license compliance' - @echo ' help-custom - print help about custom actions (if any)' @echo @echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build' @echo ' make O=dir - Locate all output files in "dir", including .config' |