diff options
author | Martin Roth <gaumless@gmail.com> | 2024-06-18 15:00:56 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-07-01 16:52:20 +0000 |
commit | eedc14da946ed15d7f8b32162e7895e2f1eb6ad2 (patch) | |
tree | 9c3990e643438e4c15793cef8959c3825c37e790 | |
parent | ebf6b3c187684afbdb018fe7b07925679ce0aa07 (diff) |
Makefile: Add symlink targets to help
Also capitalize the first letter of each help line while I'm here.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I595265d53a5ecfeb5989075dd4ce23dbdf366c00
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83125
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
-rw-r--r-- | Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -94,10 +94,15 @@ help_coreboot help:: @echo ' sphinx - Build sphinx documentation for coreboot' @echo ' sphinx-lint - Build sphinx documentation for coreboot with warnings as errors' @echo ' filelist - Show files used in current build' - @echo ' printall - print makefile info for debugging' - @echo ' gitconfig - set up git to submit patches to coreboot' - @echo ' ctags / ctags-project - make ctags file for all of coreboot or current board' - @echo ' cscope / cscope-project - make cscope.out file for coreboot or current board' + @echo ' printall - Print makefile info for debugging' + @echo ' gitconfig - Set up git to submit patches to coreboot' + @echo ' ctags / ctags-project - Make ctags file for all of coreboot or current board' + @echo ' cscope / cscope-project - Make cscope.out file for coreboot or current board' + @echo + @echo '*** site-local related targets ***' + @echo ' symlink - Create symbolic links from site-local into coreboot tree' + @echo ' clean-symlink - Remove symbolic links created by "make symlink"' + @echo ' cleanall-symlink - Remove all symbolic links in the coreboot tree' @echo # This include must come _before_ the pattern rules below! |