From fa291ae858fdba290b32df6f59edc6aede8906a8 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Wed, 1 May 2013 20:17:05 -0700 Subject: [PATCH] Makefile: don't use $(E) for help $(E) is used for 'silent make' to inform about what is going on when we are not printing actual commands being executed, and do nothing in case of 'verbose make (i.e. make V=1). For 'make help' we want to output the text regardless of whether 'silent make' is enabled or not. Signed-off-by: Kir Kolyshkin Signed-off-by: Pavel Emelyanov --- Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 5cc5fb7bc..257751f08 100644 --- a/Makefile +++ b/Makefile @@ -204,16 +204,16 @@ criu-$(CRTOOLSVERSION).tar.bz2: .PHONY: dist tar help: - $(E) ' Targets:' - $(E) ' all - Build all [*] targets' - $(E) ' * crtools - Build crtools' - $(E) ' zdtm - Build zdtm test-suite' - $(E) ' docs - Build documentation' - $(E) ' clean - Clean everything' - $(E) ' tags - Generate tags file (ctags)' - $(E) ' cscope - Generate cscope database' - $(E) ' rebuild - Force-rebuild of [*] targets' - $(E) ' test - Run zdtm test-suite' + @echo ' Targets:' + @echo ' all - Build all [*] targets' + @echo ' * crtools - Build crtools' + @echo ' zdtm - Build zdtm test-suite' + @echo ' docs - Build documentation' + @echo ' clean - Clean everything' + @echo ' tags - Generate tags file (ctags)' + @echo ' cscope - Generate cscope database' + @echo ' rebuild - Force-rebuild of [*] targets' + @echo ' test - Run zdtm test-suite' gcov: $(E) " GCOV"