Rev. | 761 |
---|---|
Size | 614 bytes |
Time | 2012-01-04 17:37:30 |
Author | barnsey123 |
Log Message | too early in the morning |
@ECHO OFF
::
:: Initial check.
:: Verify if the SDK is correctly configurated
::
IF "%OSDK%"=="" GOTO ErCfg
::
:: Set the build paremeters
::
CALL osdk_config.bat
::
:: Generate the HTML file
::
%OSDK%\bin\MemMap.exe build\symbols build\map.htm %OSDKNAME% %OSDK%\documentation\documentation.css
::
:: Display the HTML file
::
explorer build\map.htm
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
pause
GOTO End
:End