--- nfo/perl/scripts/dispatchmail/doc/mkDoc.bat 2003/01/22 17:49:35 1.1 +++ nfo/perl/scripts/dispatchmail/doc/mkDoc.bat 2003/02/10 04:13:44 1.2 @@ -1,7 +1,35 @@ @echo off +rem ----------------------------------------------------------------- + +echo generating README.text +call pod2text README.pod README.text + +echo generating README.html +call pod2html --title=README --infile=README.pod --outfile=README.html + +rem ----------------------------------------------------------------- + +echo generating INSTALL.text +call pod2text INSTALL.pod INSTALL.text + +echo generating INSTALL.html +call pod2html --title=INSTALL --infile=INSTALL.pod --outfile=INSTALL.html + +rem ----------------------------------------------------------------- + echo generating ChangeLog.text call pod2text ChangeLog.pod ChangeLog.text echo generating ChangeLog.html call pod2html --title=ChangeLog --infile=ChangeLog.pod --outfile=ChangeLog.html + +rem ----------------------------------------------------------------- + +echo generating TODO.text +call pod2text TODO.pod TODO.text + +echo generating TODO.html +call pod2html --title=TODO --infile=TODO.pod --outfile=TODO.html + +rem -----------------------------------------------------------------