]> git.lizzy.rs Git - rust.git/blob - mk/ctags.mk
doc: 'if' expressions no longer require parens
[rust.git] / mk / ctags.mk
1 ######################################################################
2 # TAGS file creation.  No dependency tracking, just do it on demand.
3 # Requires Exuberant Ctags: http://ctags.sourceforge.net/index.html
4 ######################################################################
5
6 CTAGS_OPTS=--options=${CFG_SRC_DIR}/src/etc/ctags.rust -R ${CFG_SRC_DIR}/src
7
8 TAGS.emacs:
9         ctags -e -f $@ ${CTAGS_OPTS}
10
11 TAGS.vi:
12         ctags -f $@ ${CTAGS_OPTS}