Mercurial > hg > Members > kono > nitros9-code
annotate docs/ccguide/buildman @ 1892:77d83b367eba
reduced labeltab size so os9boot would link
author | robert |
---|---|
date | Fri, 14 Oct 2005 01:56:25 +0000 |
parents | 06e11c941478 |
children |
rev | line source |
---|---|
466 | 1 #!/bin/sh |
2 if [ $# -ne 1 ]; then | |
3 echo " Usage: buildman commandname" | |
4 echo " The result is in file r1.html" | |
5 exit 1 | |
6 fi | |
7 # <!ENTITY quot CDATA ""> | |
8 cat - > temp$$ <<wrapper | |
633 | 9 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ |
466 | 10 <!ENTITY refentrypage SYSTEM "$1.refentry"> |
11 ]> | |
12 <article> | |
13 &refentrypage; | |
14 </article> | |
15 wrapper | |
633 | 16 xmlto man temp$$ |
466 | 17 rm temp$$ |