perf tools: Making QUIET_(CLEAN|INSTAL) variables global
authorJiri Olsa <jolsa@redhat.com>
Thu, 19 Dec 2013 13:42:00 +0000 (14:42 +0100)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 19 Dec 2013 19:18:08 +0000 (16:18 -0300)
Moving QUIET_(CLEAN|INSTAL) variables into:

  tools/scripts/Makefile.include

to be usable by other tools. The change to use them in libtraceevent is
in following patches.

Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1387460527-15030-3-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/config/utilities.mak
tools/scripts/Makefile.include

index f168debc5be268a75456a3639ccbf120ded594a2..4d985e0f03f584f666fb74b86efd095a064ebaae 100644 (file)
@@ -178,10 +178,3 @@ endef
 _ge_attempt = $(if $(get-executable),$(get-executable),$(_gea_warn)$(call _gea_err,$(2)))
 _gea_warn = $(warning The path '$(1)' is not executable.)
 _gea_err  = $(if $(1),$(error Please set '$(1)' appropriately))
-
-ifneq ($(findstring $(MAKEFLAGS),s),s)
-  ifneq ($(V),1)
-    QUIET_CLEAN                = @printf '  CLEAN    %s\n' $1;
-    QUIET_INSTALL      = @printf '  INSTALL  %s\n' $1;
-  endif
-endif
index ee76544deecb4138c7fdd2fee2ef4b410d39e5cc..e4cfbedcaf11d49b5ec1ded40d5e154176a84343 100644 (file)
@@ -76,5 +76,8 @@ ifneq ($(findstring $(MAKEFLAGS),s),s)
                +@echo         '  DESCEND  '$(1); \
                mkdir -p $(OUTPUT)$(1) && \
                $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
+
+       QUIET_CLEAN    = @printf '  CLEAN    %s\n' $1;
+       QUIET_INSTALL  = @printf '  INSTALL  %s\n' $1;
   endif
 endif