diff options
author | Ingo Molnar <mingo@kernel.org> | 2014-06-14 14:10:08 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2014-06-14 14:10:08 +0200 |
commit | cf230918cda19532e4a5cc4f0d5c82fa7e5e94f6 (patch) | |
tree | 9eed06e09fbbe3764f47e4da7f8d15b5965f6cb3 /tools/perf/Makefile.perf | |
parent | 4cdf77a828b056258f48a9f6078bd2f77d9704bb (diff) | |
parent | 4ba96195051be30160af6d5f5f83f9a055ab1f23 (diff) | |
download | op-kernel-dev-cf230918cda19532e4a5cc4f0d5c82fa7e5e94f6.zip op-kernel-dev-cf230918cda19532e4a5cc4f0d5c82fa7e5e94f6.tar.gz |
Merge branch 'perf/core' into perf/urgent, to pick up the latest fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/Makefile.perf')
-rw-r--r-- | tools/perf/Makefile.perf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index ae20edf..9670a16 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -819,15 +819,15 @@ TAG_FOLDERS= . ../lib/traceevent ../lib/api ../lib/symbol TAG_FILES= ../../include/uapi/linux/perf_event.h TAGS: - $(RM) TAGS + $(QUIET_GEN)$(RM) TAGS; \ $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs etags -a $(TAG_FILES) tags: - $(RM) tags + $(QUIET_GEN)$(RM) tags; \ $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs ctags -a $(TAG_FILES) cscope: - $(RM) cscope* + $(QUIET_GEN)$(RM) cscope*; \ $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs cscope -b $(TAG_FILES) ### Detect prefix changes |