We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16abd99 commit b660d19Copy full SHA for b660d19
src/Makefile
@@ -2154,6 +2154,15 @@ notags:
2154
tags TAGS: notags
2155
$(TAGPRG) $(TAGS_FILES)
2156
2157
+# Build the cscope database.
2158
+# This may search more files than necessary.
2159
+.PHONY: cscope csclean
2160
+csclean:
2161
+ -rm -vf cscope.out
2162
+cscope.out:
2163
+ cscope -bv ./*.[ch] ./*.cpp ./if_perl.xs auto/*.h auto/pathdef.c proto/*.pro
2164
+cscope: csclean cscope.out ;
2165
+
2166
# Make a highlight file for types. Requires Exuberant ctags and awk
2167
types: types.vim
2168
types.vim: $(TAGS_FILES)
0 commit comments