diff options
author | rsc <devnull@localhost> | 2005-01-14 03:45:44 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-14 03:45:44 +0000 |
commit | 78e51a8c6678b6e3dff3d619aa786669f531f4bc (patch) | |
tree | 015e00fde4fc837fd31b705e18d17dc913829388 /unix/man/mkfile | |
parent | 2634795b5f0053bc0ff08e5d7bbc0eda8efea061 (diff) | |
download | plan9port-78e51a8c6678b6e3dff3d619aa786669f531f4bc.tar.gz plan9port-78e51a8c6678b6e3dff3d619aa786669f531f4bc.tar.bz2 plan9port-78e51a8c6678b6e3dff3d619aa786669f531f4bc.zip |
checkpoint
Diffstat (limited to 'unix/man/mkfile')
-rw-r--r-- | unix/man/mkfile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/unix/man/mkfile b/unix/man/mkfile new file mode 100644 index 00000000..ebafa198 --- /dev/null +++ b/unix/man/mkfile @@ -0,0 +1,48 @@ +MAN=\ + isalpharune.3\ + rune.3\ + runestrcat.3\ + utf.7\ + print.3\ + fmtinstall.3\ + quote.3\ + fmtstrtod.3\ + bio.3\ + regexp9.3\ + regexp9.7\ + mk.1\ + +HTML=\ + isalpharune3.html\ + rune3.html\ + runestrcat3.html\ + utf7.html\ + print3.html\ + fmtinstall3.html\ + quote3.html\ + fmtstrtod3.html\ + bio3.html\ + regexp93.html\ + regexp97.html\ + mk1.html\ + +all:V: $MAN $HTML + +title='Ported from Plan 9' +MKSHELL=$PLAN9/bin/rc + +%1.html:D: %.1 + whatis title + 9 troff -manhtml $prereq | troff2html -t $title > $target + ./fixurls $target + +%3.html:D: %.3 + 9 troff -manhtml $prereq | troff2html -t $title > $target + ./fixurls $target + +%7.html:D: %.7 + 9 troff -manhtml $prereq | troff2html -t $title > $target + ./fixurls $target + +push:V: + rsync -e ssh *.html swtch:www/swtch.com/plan9port/unix/man |