about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-19 17:53:06 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-19 17:53:06 -0800
commitb89ce8e455e1471ef217e00c4da4e277c2101808 (patch)
treeb51782064beb1431ef79015030af2b48132aedb4 /tools
parentab837e8f6c701eec9bf86e1e4d506c08e02cad6c (diff)
downloadmu-b89ce8e455e1471ef217e00c4da4e277c2101808.tar.gz
5900
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update_html16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/update_html b/tools/update_html
index 34a52eea..7efddfe7 100755
--- a/tools/update_html
+++ b/tools/update_html
@@ -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