1# Copyright: 2016 Masatake YAMATO 2# License: GPL-2 3 4CTAGS=$1 5 6run_ctags() 7{ 8 echo '# option: ' "$@" 9 ${CTAGS} --quiet --options=NONE \ 10 --fields=E --extras=p \ 11 --pseudo-tags=-TAG_PROGRAM_VERSION \ 12 --pseudo-tags=-TAG_PROC_CWD \ 13 $@ \ 14 -o - input.c 15} 16 17run_ctags --format=1 18run_ctags --format=2 19