home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / experts.pak / BUILD.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-08-24  |  247 b   |  18 lines

  1. REM Build the demo Application and Dialog Expert
  2. @echo off
  3.  
  4. REM Build strings.res
  5. brcc strings.rc
  6. if errorlevel 1 goto Fail
  7.  
  8. REM Build the DLL
  9. dcc exptdemo.dpr
  10. if errorlevel 1 goto Fail
  11.  
  12. goto Exit
  13.  
  14. :Fail
  15. echo Build failed.
  16.  
  17. :Exit
  18.