mxml/doc/makedocs.sh

31 lines
830 B
Bash
Raw Normal View History

2004-05-03 03:21:16 +00:00
#!/bin/sh
#
2005-02-26 05:27:25 +00:00
# "$Id$"
2004-05-03 03:21:16 +00:00
#
# Script to make documentation...
#
# Copyright 2003-2007 by Michael Sweet.
2004-05-03 03:21:16 +00:00
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
2007-04-27 01:10:20 +00:00
htmldoc --verbose --path "hires;." --batch mxml.book -f mxml.pdf
2004-05-21 02:06:04 +00:00
htmldoc --verbose --batch mxml.book --no-title -f mxml.html
2004-05-21 02:06:04 +00:00
2004-05-03 03:21:16 +00:00
rm -rf mxml.d
mkdir mxml.d
htmldoc --verbose --batch mxml.book --no-title -t html -d mxml.d
2004-05-03 03:21:16 +00:00
#
2005-02-26 05:27:25 +00:00
# End of "$Id$".
2004-05-03 03:21:16 +00:00
#