diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2012-10-26 04:55:50 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-10-26 09:22:24 -0400 |
commit | 615d774d69031357a1bfed57fd383c6fe6f90a69 (patch) | |
tree | faa2607fe25ca27769f51b98f096a27e0429cee7 /tools/perf/Makefile | |
parent | 536e2b0fc2af42a464ea6eb6b67a2c754e14f2e2 (diff) |
perf tools: Convert invocation of MAKE into SUBDIR
This will show directory change info in a consistent form. Also it can
be converted again into David Howell's descend command.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Borislav Petkov <bp@amd64.org>
Cc: David Howells <dhowells@redhat.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1351241752-2919-3-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 5cf40cbdaaf9..2d0c09ab58b8 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -985,7 +985,7 @@ INSTALL_DOC_TARGETS += quick-install-doc quick-install-man quick-install-html | |||
985 | 985 | ||
986 | # 'make doc' should call 'make -C Documentation all' | 986 | # 'make doc' should call 'make -C Documentation all' |
987 | $(DOC_TARGETS): | 987 | $(DOC_TARGETS): |
988 | $(MAKE) -C Documentation $(@:doc=all) | 988 | $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:doc=all) |
989 | 989 | ||
990 | TAGS: | 990 | TAGS: |
991 | $(RM) TAGS | 991 | $(RM) TAGS |
@@ -1058,7 +1058,7 @@ install-python_ext: | |||
1058 | 1058 | ||
1059 | # 'make install-doc' should call 'make -C Documentation install' | 1059 | # 'make install-doc' should call 'make -C Documentation install' |
1060 | $(INSTALL_DOC_TARGETS): | 1060 | $(INSTALL_DOC_TARGETS): |
1061 | $(MAKE) -C Documentation $(@:-doc=) | 1061 | $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:-doc=) |
1062 | 1062 | ||
1063 | ### Cleaning rules | 1063 | ### Cleaning rules |
1064 | 1064 | ||
@@ -1066,7 +1066,7 @@ clean: $(LIBTRACEEVENT)-clean | |||
1066 | $(RM) $(LIB_OBJS) $(BUILTIN_OBJS) $(LIB_FILE) $(OUTPUT)perf-archive $(OUTPUT)perf.o $(LANG_BINDINGS) | 1066 | $(RM) $(LIB_OBJS) $(BUILTIN_OBJS) $(LIB_FILE) $(OUTPUT)perf-archive $(OUTPUT)perf.o $(LANG_BINDINGS) |
1067 | $(RM) $(ALL_PROGRAMS) perf | 1067 | $(RM) $(ALL_PROGRAMS) perf |
1068 | $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h TAGS tags cscope* | 1068 | $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h TAGS tags cscope* |
1069 | $(MAKE) -C Documentation/ clean | 1069 | $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) clean |
1070 | $(RM) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)PERF-CFLAGS | 1070 | $(RM) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)PERF-CFLAGS |
1071 | $(RM) $(OUTPUT)util/*-bison* | 1071 | $(RM) $(OUTPUT)util/*-bison* |
1072 | $(RM) $(OUTPUT)util/*-flex* | 1072 | $(RM) $(OUTPUT)util/*-flex* |