mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-14 15:55:30 +00:00
97ca6dc424
to the LGPL2 (STR #108)
29 lines
698 B
Bash
Executable File
29 lines
698 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# "$Id$"
|
|
#
|
|
# Script to make documentation...
|
|
#
|
|
# Copyright 2003-2010 by Michael R Sweet.
|
|
#
|
|
# These coded instructions, statements, and computer programs are the
|
|
# property of Michael R Sweet and are protected by Federal copyright
|
|
# law. Distribution and use rights are outlined in the file "COPYING"
|
|
# which should have been included with this file. If this file is
|
|
# missing or damaged, see the license at:
|
|
#
|
|
# http://www.minixml.org/
|
|
#
|
|
|
|
htmldoc --verbose --path "hires;." --batch mxml.book -f mxml.pdf
|
|
|
|
htmldoc --verbose --batch mxml.book --no-title -f mxml.html
|
|
|
|
rm -rf mxml.d
|
|
mkdir mxml.d
|
|
htmldoc --verbose --batch mxml.book --no-title -t html -d mxml.d
|
|
|
|
#
|
|
# End of "$Id$".
|
|
#
|