0.pre7.64:
[sbcl.git] / doc / make-doc.sh
1 #!/bin/sh
2
3 if [ "" != "$JADE" ]; then
4     # The user has told us where to find jade, good.
5     echo using $JADE
6 elif which openjade; then
7     # OpenJade is the version of Jade which comes with OpenBSD 2.9, 
8     # and I started using it in sbcl-0.pre7.x. -- WHN
9     JADE=openjade
10 elif which jade; then
11     # I used the original Jade until sbcl-0.pre7.x. It might still
12     # work. -- WHN
13     JADE=jade
14 else
15     echo "can't find Jade, sorry"
16     exit 1
17 fi
18
19 rm -f book1.htm
20 $JADE -t sgml -ihtml -d sbcl-html.dsl\#html user-manual.sgml
21 ln -sf book1.htm user-manual.html