diff options
Diffstat (limited to 'update_html')
-rwxr-xr-x | update_html | 14 |
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; ) |