diff options
| author | Jiri Olsa <[email protected]> | 2013-12-19 14:42:00 +0100 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2013-12-19 16:18:08 -0300 |
| commit | b7248defce917acce74b338d69c2b8f600370213 (patch) | |
| tree | ee5d18f99dfc01a58988a2d2c8a359c00dac45f5 /tools/scripts | |
| parent | ee4ad93e82b8fd260ae618f6b0413cd321bc09cb (diff) | |
perf tools: Making QUIET_(CLEAN|INSTAL) variables global
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 <[email protected]>
Cc: Corey Ashford <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Steven Rostedt <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/scripts')
| -rw-r--r-- | tools/scripts/Makefile.include | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/scripts/Makefile.include b/tools/scripts/Makefile.include index ee76544deecb..e4cfbedcaf11 100644 --- a/tools/scripts/Makefile.include +++ b/tools/scripts/Makefile.include @@ -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 |
