rust/mk/ctags.mk

13 lines
437 B
Makefile
Raw Normal View History

######################################################################
# TAGS file creation. No dependency tracking, just do it on demand.
# Requires Exuberant Ctags: http://ctags.sourceforge.net/index.html
######################################################################
2011-10-12 22:34:24 +02:00
CTAGS_OPTS=--options=${CFG_SRC_DIR}/src/etc/ctags.rust -R ${CFG_SRC_DIR}/src
TAGS.emacs:
ctags -e -f $@ ${CTAGS_OPTS}
TAGS.vi:
ctags -f $@ ${CTAGS_OPTS}