about summary refs log tree commit diff stats
path: root/update_html
diff options
context:
space:
mode:
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; )