annotate docs/nitros9guide/buildman @ 1299:1f0995cd0431

REL is now back-ported to OS-9 Level One
author boisy
date Mon, 01 Sep 2003 16:59:50 +0000
parents 740f7868679c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
143
740f7868679c More splitups.
roug
parents:
diff changeset
1 #!/bin/sh
740f7868679c More splitups.
roug
parents:
diff changeset
2 if [ $# -ne 1 ]; then
740f7868679c More splitups.
roug
parents:
diff changeset
3 echo " Usage: buildman commandname"
740f7868679c More splitups.
roug
parents:
diff changeset
4 echo " The result is in file r1.html"
740f7868679c More splitups.
roug
parents:
diff changeset
5 exit 1
740f7868679c More splitups.
roug
parents:
diff changeset
6 fi
740f7868679c More splitups.
roug
parents:
diff changeset
7 cat - > temp$$ <<wrapper
740f7868679c More splitups.
roug
parents:
diff changeset
8 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
740f7868679c More splitups.
roug
parents:
diff changeset
9 <!ENTITY replstart "&lt;">
740f7868679c More splitups.
roug
parents:
diff changeset
10 <!ENTITY replend "&gt;">
740f7868679c More splitups.
roug
parents:
diff changeset
11 <!ENTITY repeatst "{">
740f7868679c More splitups.
roug
parents:
diff changeset
12 <!ENTITY repeaten "}">
740f7868679c More splitups.
roug
parents:
diff changeset
13 <!ENTITY quot CDATA "&#22;">
740f7868679c More splitups.
roug
parents:
diff changeset
14 <!ENTITY refentrypage SYSTEM "$1.refentry">
740f7868679c More splitups.
roug
parents:
diff changeset
15 ]>
740f7868679c More splitups.
roug
parents:
diff changeset
16 <article>
740f7868679c More splitups.
roug
parents:
diff changeset
17 &refentrypage;
740f7868679c More splitups.
roug
parents:
diff changeset
18 </article>
740f7868679c More splitups.
roug
parents:
diff changeset
19 wrapper
740f7868679c More splitups.
roug
parents:
diff changeset
20 docbook2man temp$$
740f7868679c More splitups.
roug
parents:
diff changeset
21 rm temp$$