From 618d0a48cc89fcdaeceaac4607ef7400a27bdbbf Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Sun, 5 Jun 2016 10:52:43 -0600 Subject: [PATCH] UPSTREAM: Makefile: Make printall target more readable - Put each piece of data from the printall target on its own line. - Add a blank line between each section. Change-Id: I50068690ab6795b7ef211865f3798c87debf2a07 Original-Signed-off-by: Martin Roth Original-Reviewed-on: https://review.coreboot.org/15077 Original-Reviewed-by: Nico Huber Original-Reviewed-by: Paul Menzel (cherry-picked from commit 09b6444b888d34338ce8fb6978a40260597b3161) Signed-off-by: Martin Roth Reviewed-on: https://chromium-review.googlesource.com/350909 Commit-Ready: Aaron Durbin Tested-by: Aaron Durbin Reviewed-by: Aaron Durbin --- Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 4380d97569..c502d2c793 100644 --- a/Makefile +++ b/Makefile @@ -271,12 +271,11 @@ DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs))) -include $(DEPENDENCIES) printall: - @$(foreach class,$(classes),echo $(class)-objs:=$($(class)-objs); ) - @echo alldirs:=$(alldirs) - @echo allsrcs=$(allsrcs) - @echo DEPENDENCIES=$(DEPENDENCIES) - @$(foreach class,$(special-classes),echo $(class):='$($(class))'; ) - + @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; ) + @echo alldirs: $(alldirs) | tr ' ' '\n'; echo + @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo + @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo + @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; ) endif ifndef NOMKDIR