home *** CD-ROM | disk | FTP | other *** search
- REM Build the demo Application and Dialog Expert
- @echo off
-
- REM Build strings.res
- brcc32 strings.rc
- if errorlevel 1 goto Fail
- brcc32 prjexpl.rc
- if errorlevel 1 goto Fail
-
- REM Build the DLL
- dcc32 exptdemo
- if errorlevel 1 goto Fail
- dcc32 projexpl
- if errorlevel 1 goto Fail
-
- goto Exit
-
- :Fail
- echo Build failed.
-
- :Exit
-