Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15077
-gerrit
commit 902e5edd6c254fb4a9cce3ab2ca62ee1acfd0887 Author: Martin Roth martinroth@google.com Date: Sun Jun 5 10:52:43 2016 -0600
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 Signed-off-by: Martin Roth martinroth@google.com --- Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/Makefile b/Makefile index 4380d97..c502d2c 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