File tree 3 files changed +20
-0
lines changed
3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -26,3 +26,11 @@ massif-*
26
26
27
27
# CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
28
28
* .dir /
29
+
30
+ # Editor navigation files:
31
+ /GPATH
32
+ /GRTAGS
33
+ /GSYMS
34
+ /GTAGS
35
+ /TAGS
36
+ /tags
Original file line number Diff line number Diff line change
1
+ default:\
2
+ :langmap=c\:.c.h.function:\
3
+
Original file line number Diff line number Diff line change @@ -132,3 +132,12 @@ apidoc:
132
132
apidoc_clean :
133
133
rm -rf apidoc
134
134
endif
135
+
136
+ # # Editor navigation files
137
+ C_SOURCE_FILES = $(wildcard include/* /* .h library/* .[hc] programs/* /* .[hc] tests/suites/* .function)
138
+ tags : $(C_SOURCE_FILES )
139
+ ctags -o $@ $(C_SOURCE_FILES )
140
+ TAGS : $(C_SOURCE_FILES )
141
+ etags -o $@ $(C_SOURCE_FILES )
142
+ GPATH GRTAGS GSYMS GTAGS : $(C_SOURCE_FILES )
143
+ ls $(C_SOURCE_FILES ) | gtags -f - --gtagsconf .globalrc
You can’t perform that action at this time.
0 commit comments