diff options
author | Ingo Molnar <mingo@kernel.org> | 2013-10-09 05:49:26 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-10-11 11:18:06 -0400 |
commit | 8ec19c0eba73d7221e93e993c1c8bd62484354e9 (patch) | |
tree | 9b06bca1c3f0388c66a7005a34bbf4a01d25f655 /tools/scripts/Makefile.include | |
parent | cee972c0e6940ec75bab2d02f37e96d06ce143eb (diff) |
perf tools: Implement summary output for 'make clean'
'make clean' used to show all the rm lines, which isn't really
informative in any way and spams the console.
Implement summary output:
comet:~/tip/tools/perf> make clean
CLEAN libtraceevent
CLEAN liblk
CLEAN config
CLEAN core-objs
CLEAN core-progs
CLEAN core-gen
CLEAN Documentation
CLEAN python
'make clean V=1' will still show the old, detailed output.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1381312169-17354-2-git-send-email-mingo@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/scripts/Makefile.include')
-rw-r--r-- | tools/scripts/Makefile.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/scripts/Makefile.include b/tools/scripts/Makefile.include index 0d0506d55c71..1853736c8106 100644 --- a/tools/scripts/Makefile.include +++ b/tools/scripts/Makefile.include | |||
@@ -66,7 +66,7 @@ ifneq ($(V),1) | |||
66 | QUIET_MKDIR = @echo ' ' MKDIR $@; | 66 | QUIET_MKDIR = @echo ' ' MKDIR $@; |
67 | QUIET_GEN = @echo ' ' GEN $@; | 67 | QUIET_GEN = @echo ' ' GEN $@; |
68 | QUIET_SUBDIR0 = +@subdir= | 68 | QUIET_SUBDIR0 = +@subdir= |
69 | QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \ | 69 | QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \ |
70 | $(MAKE) $(PRINT_DIR) -C $$subdir | 70 | $(MAKE) $(PRINT_DIR) -C $$subdir |
71 | QUIET_FLEX = @echo ' ' FLEX $@; | 71 | QUIET_FLEX = @echo ' ' FLEX $@; |
72 | QUIET_BISON = @echo ' ' BISON $@; | 72 | QUIET_BISON = @echo ' ' BISON $@; |