home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / BUILD.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-06-11  |  336 b   |  22 lines

  1. REM Build the demo Application and Dialog Expert
  2. @echo off
  3.  
  4. REM Build strings.res
  5. brcc32 strings.rc
  6. if errorlevel 1 goto Fail
  7. brcc32 prjexpl.rc
  8. if errorlevel 1 goto Fail
  9.  
  10. REM Build the DLL
  11. dcc32 exptdemo
  12. if errorlevel 1 goto Fail
  13. dcc32 projexpl
  14. if errorlevel 1 goto Fail
  15.  
  16. goto Exit
  17.  
  18. :Fail
  19. echo Build failed.
  20.  
  21. :Exit
  22.