Rev. | 1002 |
---|---|
Size | 522 bytes |
Time | 2013-12-08 19:50:26 |
Author | ![]() |
Log Message | Resynchronized my own changes to the OSDK with what was in the depot.
|
@ECHO OFF
::
:: Initial check.
:: Verify if the SDK is correctly configurated
::
IF "%OSDK%"=="" GOTO ErCfg
::
:: Set the build paremeters
::
CALL osdk_config.bat
::
:: Launch the compilation of files
::
CALL %OSDK%\bin\make.bat %OSDKFILE%
GOTO End
::
:: Outputs an error message
::
:ErCfg
ECHO == ERROR ==
ECHO The Oric SDK was not configured properly
ECHO You should have a OSDK environment variable setted to the location of the SDK
IF "%OSDKBRIEF%"=="" PAUSE
GOTO End
:End