All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] perf tools: Make the x86 clean quiet
@ 2016-04-25 20:17 Jiri Olsa
  2016-04-25 20:17 ` [PATCH 2/2] tools build: Fix perf_clean target Jiri Olsa
  2016-04-27 15:31 ` [tip:perf/core] perf tools: Make the x86 clean quiet tip-bot for Jiri Olsa
  0 siblings, 2 replies; 5+ messages in thread
From: Jiri Olsa @ 2016-04-25 20:17 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: lkml, David Ahern, Ingo Molnar, Namhyung Kim, Peter Zijlstra, TJ

Turn current clean output:
  $ make clean
  rm -f arch/x86/include/generated/asm/syscalls_64.c
    CLEAN    libbpf
    CLEAN    libapi

into:
  $ make clean
    CLEAN    x86
    CLEAN    libapi
    CLEAN    libbpf

Link: http://lkml.kernel.org/n/tip-npsrwklwcorjbkzkv5w00uhk@git.kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
---
 tools/perf/arch/x86/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/arch/x86/Makefile b/tools/perf/arch/x86/Makefile
index a33729173b13..6c9211b18ec0 100644
--- a/tools/perf/arch/x86/Makefile
+++ b/tools/perf/arch/x86/Makefile
@@ -24,6 +24,6 @@ $(header): $(sys)/syscall_64.tbl $(systbl)
 	$(Q)$(SHELL) '$(systbl)' $(sys)/syscall_64.tbl 'x86_64' > $@
 
 clean::
-	rm -f $(header)
+	$(call QUIET_CLEAN, x86) $(RM) $(header)
 
 archheaders: $(header)
-- 
2.4.11

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-04-27 15:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-25 20:17 [PATCH 1/2] perf tools: Make the x86 clean quiet Jiri Olsa
2016-04-25 20:17 ` [PATCH 2/2] tools build: Fix perf_clean target Jiri Olsa
2016-04-25 20:22   ` Arnaldo Carvalho de Melo
2016-04-27 15:32   ` [tip:perf/core] " tip-bot for Jiri Olsa
2016-04-27 15:31 ` [tip:perf/core] perf tools: Make the x86 clean quiet tip-bot for Jiri Olsa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.