about summary refs log tree commit diff stats
path: root/update_html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-09-07 15:08:54 -0700
committerKartik Agaram <vc@akkartik.com>2018-09-07 15:08:54 -0700
commit608a7fa8d0faf9a3e3d182d9eabe969804443aab (patch)
tree7e1934d9ef0e8372381c306312591235c4f27110 /update_html
parenta6517ed821ff39fa56eb3b975799d22497d78a48 (diff)
downloadmu-608a7fa8d0faf9a3e3d182d9eabe969804443aab.tar.gz
4536
Diffstat (limited to 'update_html')
-rwxr-xr-xupdate_html10
1 files changed, 8 insertions, 2 deletions
diff --git a/update_html b/update_html
index 6f45ae4e..e681a6e4 100755
--- a/update_html
+++ b/update_html
@@ -75,10 +75,16 @@ done
 ( cd subx
   ctags -x *.cc  |grep -v '^. '  > /tmp/tags  # don't hyperlink every 'i' to the integer register variant
 )
-for f in subx/*.cc subx/*.subx
+for f in subx/*.cc
 do
   process $f
 done
 
-rm /tmp/tags
+rm -f /tmp/tags
+for f in subx/examples/*.subx subx/apps/*.subx
+do
+  process $f
+done
+
+rm -f /tmp/tags
 ( cd linkify; clean; )