home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Pascal / BPASCAL.700 / D2 / CHESS.ZIP / MAKE.BAT
Encoding:
DOS Batch File  |  1992-10-01  |  376 b   |  24 lines

  1. echo off
  2.  
  3. cd DLL
  4. rc -r lopenlib.rc
  5. if errorlevel 1 goto error
  6. bpc -m -cw -$S-,W- -DDLL chess
  7. if errorlevel 1 goto error
  8. copy chess.dll ..
  9. cd ..
  10.  
  11. cd OWL
  12. bpc -m -cw -$S- -DDLL -u..\DLL owlchess
  13. if errorlevel 1 goto error
  14. copy owlchess.exe ..
  15. cd ..
  16.  
  17. cd TV
  18. bpc -m -cp -$S- -DDLL -u..\DLL tvchess
  19. if errorlevel 1 goto error
  20. copy tvchess.exe ..
  21. cd ..
  22.  
  23. :error
  24.