about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-02 15:23:01 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-02 15:23:01 -0800
commitc9bda4d13ea33873dd5bce1eef0434cb11763d19 (patch)
tree6a4488fc7c7dd3408687ecd03b94cac97a606f0a /tools
parent6f1581e77b8587da86a2fdaa461f83ab464447ce (diff)
downloadmu-c9bda4d13ea33873dd5bce1eef0434cb11763d19.tar.gz
5875
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update_html14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/update_html b/tools/update_html
index 478d5d6c..7efddfe7 100755
--- a/tools/update_html
+++ b/tools/update_html
@@ -45,23 +45,23 @@ do
   process $f
 done
 
-for f in examples/*.subx
+ctags -x *.subx  > /tmp/tags
+for f in *.subx
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
-  ( cd examples
-    ctags -x `basename $f` > /tmp/tags
-  )
   process $f
 done
 
-ctags -x *.subx  > /tmp/tags
-for f in *.subx
+for f in apps/*.subx
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
+  ( cd apps
+    ctags -x ../*.subx `basename $f` > /tmp/tags
+  )
   process $f
 done
 
-for f in apps/*.subx
+for f in apps/*.mu
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
   ( cd apps