Makefile: Fix indentation in help_coreboot

Fix indentation to make it aesthetically more pleasing.

Change-Id: I51b052e4d9d358e92c8105cc23997d6d35bc4d8d
Signed-off-by: Andy <andy@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85895
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Christian Walter <christian.walter@9elements.com>
This commit is contained in:
Andy 2025-01-08 14:04:26 +01:00 committed by Felix Singer
commit 05ef8854a7

View file

@ -88,21 +88,21 @@ all: real-all
help_coreboot help::
@echo '*** coreboot platform targets ***'
@echo ' Use "make [target] V=1" for extra build debug information'
@echo ' all - Build coreboot'
@echo ' clean - Remove coreboot build artifacts'
@echo ' distclean - Remove build artifacts and config files'
@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 ' all - Build coreboot'
@echo ' clean - Remove coreboot build artifacts'
@echo ' distclean - Remove build artifacts and config files'
@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
@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 ' 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!