home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazin 1997 January / CD_01_97.ISO / game / make.bat < prev    next >
DOS Batch File  |  1996-04-26  |  224b  |  18 lines

  1. @echo off
  2.  :begin
  3.  turbo 
  4.  rem -M   = make modified units.
  5.  rem /$S- = No stack checking.
  6.  
  7.    bpc /$g+ /$d- /$S+ -M game.pas
  8.  
  9.    game
  10.  
  11.  choice CONTINUE /ty,1   
  12. if errorlevel=2 goto end
  13.  
  14. goto begin
  15.  
  16.   :end
  17.  
  18.