home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwplascr.zip / XWPL0208.ZIP / createdoc.cmd < prev    next >
OS/2 REXX Batch file  |  2001-04-25  |  695b  |  19 lines

  1. /* createdoc.cmd:
  2.  
  3.     this calls xdoc.exe on all the *.c files
  4.     to have HTML reference documentation created.
  5.  
  6.     xdoc.exe must be in ..\xwphelpers (which is true if you have
  7.     checked out the xwphelpers repository).
  8.  
  9.     After this has been executed, open HTML\index.html to view the
  10.     documentation. */
  11.  
  12. 'echo on'
  13. '..\xwphelpers\xdoc "-iinclude;..\xwphelpers\include" src\classes\*.c src\config\*.c src\Daemon\*.c src\filesys\*.c src\hook\*.c src\media\*.c src\shared\*.c src\startshut\*.c src\widgets\*.c src\xcenter\*.c ..\xwphelpers\src\helpers\*.c'
  14.  
  15. dir = directory();
  16.  
  17. rc = SysCreateObject('WPShadow', "index.html", dir, "SHADOWID="dir"\HTML\index.html", 'F')
  18.  
  19.