about summary refs log tree commit diff stats
path: root/update_html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-10-12 23:43:09 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-10-12 23:43:09 -0700
commit25ad969f7582d9253f5329812aed5ed5784d8ec8 (patch)
tree13ce7948b151b2583d9d372a9ce175ad25a9f836 /update_html
parent9e0ec84fb86e3173a7671ad8d4f7c2ed29613a50 (diff)
downloadmu-25ad969f7582d9253f5329812aed5ed5784d8ec8.tar.gz
4052
Diffstat (limited to 'update_html')
-rwxr-xr-xupdate_html14
1 files changed, 14 insertions, 0 deletions
diff --git a/update_html b/update_html
index 024b2ddb..c1a79ed0 100755
--- a/update_html
+++ b/update_html
@@ -86,5 +86,19 @@ process() {
     mv $f.out $f
   done
 
+  rm html/subx/*.html
+  for f in subx/*.cc
+  do
+    process $f
+  done
+  ( cd subx
+    ctags -x *.cc > /tmp/tags
+  )
+  linkify/linkify /tmp/tags html/subx/*.html
+  for f in html/subx/*.cc.html
+  do
+    mv $f.out $f
+  done
+
 rm /tmp/tags
 ( cd linkify; clean; )