| 1 | @echo off | 
| 2 |  | 
| 3 | rem ----------------------------------------------------------------- | 
| 4 |  | 
| 5 | echo generating README.text | 
| 6 | call pod2text README.pod README.text | 
| 7 |  | 
| 8 | echo generating README.html | 
| 9 | call pod2html --title=README --infile=README.pod --outfile=README.html | 
| 10 |  | 
| 11 | rem ----------------------------------------------------------------- | 
| 12 |  | 
| 13 | echo generating INSTALL.text | 
| 14 | call pod2text INSTALL.pod INSTALL.text | 
| 15 |  | 
| 16 | echo generating INSTALL.html | 
| 17 | call pod2html --title=INSTALL --infile=INSTALL.pod --outfile=INSTALL.html | 
| 18 |  | 
| 19 | rem ----------------------------------------------------------------- | 
| 20 |  | 
| 21 | echo generating ChangeLog.text | 
| 22 | call pod2text ChangeLog.pod ChangeLog.text | 
| 23 |  | 
| 24 | echo generating ChangeLog.html | 
| 25 | call pod2html --title=ChangeLog --infile=ChangeLog.pod --outfile=ChangeLog.html | 
| 26 |  | 
| 27 | rem ----------------------------------------------------------------- | 
| 28 |  | 
| 29 | echo generating TODO.text | 
| 30 | call pod2text TODO.pod TODO.text | 
| 31 |  | 
| 32 | echo generating TODO.html | 
| 33 | call pod2html --title=TODO --infile=TODO.pod --outfile=TODO.html | 
| 34 |  | 
| 35 | rem ----------------------------------------------------------------- |