This commit is contained in:
Kartik Agaram 2020-01-19 17:53:06 -08:00
parent ab837e8f6c
commit b89ce8e455
1 changed files with 16 additions and 0 deletions

View File

@ -38,6 +38,13 @@ convert_html() {
mv -i $1.html html/`dirname $1`
}
ctags -x *.cc |grep -v '^. ' > /tmp/tags # don't hyperlink every 'i' to the integer register variant
for f in *.cc
do
test $# -gt 0 && test $1 != $f && continue
process $f
done
ctags -x *.subx > /tmp/tags
for f in *.subx
do
@ -54,4 +61,13 @@ do
process $f
done
for f in apps/*.mu
do
test $# -gt 0 && test $1 != $f && continue
( cd apps
ctags -x ../*.subx `basename $f` > /tmp/tags
)
process $f
done
rm /tmp/tags