compile.bat 339 B

1234567891011
  1. @ECHO OFF
  2. REM This script is run by Free Oberon on Windows. Current directory of the
  3. REM script will be where FreeOberon.exe is located.
  4. CD bin >nul 2>&1
  5. SET CURDIR=%~dp0
  6. SET PATH=%CURDIR%voc\bin;%CURDIR%mingw32\bin;%PATH%
  7. ECHO ON
  8. @CALL voc -OC -cfF %2 ..\Programs\%1
  9. @SET MYEXITCODE=%ERRORLEVEL%
  10. @ECHO OFF
  11. EXIT /b %MYEXITCODE%