1#!/bin/sh
2#
3# "$Id: makedocs.sh 408 2010-09-19 05:26:46Z mike $"
4#
5# Script to make documentation...
6#
7# Copyright 2003-2010 by Michael R Sweet.
8#
9# These coded instructions, statements, and computer programs are the
10# property of Michael R Sweet and are protected by Federal copyright
11# law.  Distribution and use rights are outlined in the file "COPYING"
12# which should have been included with this file.  If this file is
13# missing or damaged, see the license at:
14#
15#     http://www.minixml.org/
16#
17
18htmldoc --verbose --path "hires;." --batch mxml.book -f mxml.pdf
19
20htmldoc --verbose --batch mxml.book --no-title -f mxml.html
21
22rm -rf mxml.d
23mkdir mxml.d
24htmldoc --verbose --batch mxml.book --no-title -t html -d mxml.d
25
26#
27# End of "$Id: makedocs.sh 408 2010-09-19 05:26:46Z mike $".
28#
29