home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwphescr.zip / XWPH0208.ZIP / createdoc.cmd < prev    next >
OS/2 REXX Batch file  |  2000-11-23  |  481b  |  15 lines

  1. /* createdoc.cmd:
  2.     this calls xdoc\xdoc.exe on all the *.c files in \main and \helpers
  3.     to have HTML reference documentation created.
  4.     After this has been executed, open HTML\index.html to view the
  5.     documentation. */
  6.  
  7. call RxFuncAdd 'SysLoadFuncs','RexxUtil','SysLoadFuncs'
  8. call SysLoadFuncs
  9.  
  10. '@echo off'
  11. 'call xdoc "-iinclude" src\helpers\*.c'
  12.  
  13. rc = SysCreateObject("WPShadow", "index.html", directory(), "SHADOWID="directory()"\HTML\index.html", "R");
  14.  
  15.