diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2014-05-28 04:19:18 -0400 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-06-03 15:34:23 -0400 |
commit | 16a6433615c14097fd8d406b10ce6393aebb7017 (patch) | |
tree | 1cba8aca272b0cee6e9182a8a49845292c5ebb74 /tools | |
parent | 6a2f2543a1f3aa0e7766e27c30b93d164771e892 (diff) |
perf tools: Consider header files outside perf directory in tags target
This fixes lookups like "vi -t event_format"
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Link: http://lkml.kernel.org/r/20140528081918.GA28567@linutronix.de
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/Makefile.perf | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 67f7c0575b26..6286e13adc2e 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf | |||
@@ -815,17 +815,20 @@ INSTALL_DOC_TARGETS += quick-install-doc quick-install-man quick-install-html | |||
815 | $(DOC_TARGETS): | 815 | $(DOC_TARGETS): |
816 | $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:doc=all) | 816 | $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:doc=all) |
817 | 817 | ||
818 | TAG_FOLDERS= . ../lib/traceevent ../lib/api ../lib/symbol | ||
819 | TAG_FILES= ../../include/uapi/linux/perf_event.h | ||
820 | |||
818 | TAGS: | 821 | TAGS: |
819 | $(RM) TAGS | 822 | $(RM) TAGS |
820 | $(FIND) . -name '*.[hcS]' -print | xargs etags -a | 823 | $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs etags -a $(TAG_FILES) |
821 | 824 | ||
822 | tags: | 825 | tags: |
823 | $(RM) tags | 826 | $(RM) tags |
824 | $(FIND) . -name '*.[hcS]' -print | xargs ctags -a | 827 | $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs ctags -a $(TAG_FILES) |
825 | 828 | ||
826 | cscope: | 829 | cscope: |
827 | $(RM) cscope* | 830 | $(RM) cscope* |
828 | $(FIND) . -name '*.[hcS]' -print | xargs cscope -b | 831 | $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs cscope -b $(TAG_FILES) |
829 | 832 | ||
830 | ### Detect prefix changes | 833 | ### Detect prefix changes |
831 | TRACK_CFLAGS = $(subst ','\'',$(CFLAGS)):\ | 834 | TRACK_CFLAGS = $(subst ','\'',$(CFLAGS)):\ |