From 761001dadc4fbbff674295f6bf0fd6c9026b107a Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sat, 26 Dec 2020 14:29:02 -0800 Subject: 7405 --- tools/update_html | 81 ++++++++++++++++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 36 deletions(-) (limited to 'tools') diff --git a/tools/update_html b/tools/update_html index 97371b8f..8aba9637 100755 --- a/tools/update_html +++ b/tools/update_html @@ -39,44 +39,53 @@ 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 +#? 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 [0-9]*.subx [0-9]*.mu > /tmp/tags +#? for f in *.subx *.mu +#? do +#? test $# -gt 0 && test $1 != $f && continue +#? process $f +#? done +#? +#? for f in apps/*.subx +#? do +#? test $# -gt 0 && test $1 != $f && continue +#? ( cd apps +#? ctags -x ../[0-9]*.subx ../[0-9]*.mu `basename $f` > /tmp/tags +#? ) +#? process $f +#? done +#? +#? for f in apps/*.mu +#? do +#? test $# -gt 0 && test $1 != $f && continue +#? ( cd apps +#? ctags -x ../[0-9]*.subx ../[0-9]*.mu `basename $f` > /tmp/tags +#? ) +#? process $f +#? done +#? +#? for f in apps/*/*.mu +#? do +#? test $# -gt 0 && test $1 != $f && continue +#? echo $f +#? ( cd `dirname $f` +#? ctags -x ../../[0-9]*.subx ../../[0-9]*.mu *.mu > /tmp/tags +#? ) +#? process $f +#? done + +for f in baremetal/*.hex do test $# -gt 0 && test $1 != $f && continue - process $f -done - -ctags -x [0-9]*.subx [0-9]*.mu > /tmp/tags -for f in *.subx *.mu -do - test $# -gt 0 && test $1 != $f && continue - process $f -done - -for f in apps/*.subx -do - test $# -gt 0 && test $1 != $f && continue - ( cd apps - ctags -x ../[0-9]*.subx ../[0-9]*.mu `basename $f` > /tmp/tags - ) - process $f -done - -for f in apps/*.mu -do - test $# -gt 0 && test $1 != $f && continue - ( cd apps - ctags -x ../[0-9]*.subx ../[0-9]*.mu `basename $f` > /tmp/tags - ) - process $f -done - -for f in apps/*/*.mu -do - test $# -gt 0 && test $1 != $f && continue - echo $f - ( cd `dirname $f` - ctags -x ../../[0-9]*.subx ../../[0-9]*.mu *.mu > /tmp/tags + ( cd baremetal + ctags -x [0-9]*.subx [0-9]*.mu `basename $f` > /tmp/tags ) process $f done -- cgit 1.4.1-2-gfad0