xref: /Universal-ctags/Tmain/maxdepth.d/run.sh (revision 9b00f3493aa5003b856c93dd05390eb56f1b5c72)
1# Copyright: 2015 Masatake YAMATO
2# License: GPL-2
3
4CTAGS=$1
5
6echo '# DEPTH=1'
7${CTAGS} --quiet --options=NONE --maxdepth=1 -R -o - ./src
8echo '# DEPTH=2'
9${CTAGS} --quiet --options=NONE --maxdepth=2 -R -o - ./src
10exit $?
11