makedocs.sh 786 B

12345678910111213141516171819202122232425262728
  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. htmldoc --verbose --path "hires;." --batch mxml.book -f mxml.pdf
  18. htmldoc --verbose --batch mxml.book --no-title -f mxml.html
  19. rm -rf mxml.d
  20. mkdir mxml.d
  21. htmldoc --verbose --batch mxml.book --no-title -t html -d mxml.d
  22. #
  23. # End of "$Id: makedocs.sh 408 2010-09-19 05:26:46Z mike $".
  24. #