summaryrefslogtreecommitdiff
path: root/support-files/build-tags
blob: d5f9fbf5100c1c502c3c39534e7ff93e2104c3ed (plain)
1
2
3
4
5
6
7
8
9
#! /bin/sh

rm -f TAGS
filter='\.cc$\|\.c$\|\.h$\|\.yy$'
files=`bk -r sfiles -gU | grep $filter `
for f in $files ;
do
	 etags -o TAGS --append $f
done