From 05ef8854a73e7d45385566381ad4313df359d707 Mon Sep 17 00:00:00 2001 From: Andy Date: Wed, 8 Jan 2025 14:04:26 +0100 Subject: [PATCH] Makefile: Fix indentation in help_coreboot Fix indentation to make it aesthetically more pleasing. Change-Id: I51b052e4d9d358e92c8105cc23997d6d35bc4d8d Signed-off-by: Andy Reviewed-on: https://review.coreboot.org/c/coreboot/+/85895 Reviewed-by: Felix Singer Reviewed-by: Maximilian Brune Tested-by: build bot (Jenkins) Reviewed-by: Christian Walter --- Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 491e70252c..5e45e16300 100644 --- a/Makefile +++ b/Makefile @@ -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!