link_console.bat 469 B

123456789101112
  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. This
  4. REM particular script is for console programs.
  5. CD bin >nul 2>&1
  6. @DEL /s %~n1.exe >nul 2>&1
  7. SET CURDIR=%~dp0
  8. SET PATH=%CURDIR%voc\bin;%CURDIR%mingw32\bin;%PATH%
  9. ECHO ON
  10. gcc -fPIC -g -I "%CURDIR%voc/C/include" -o %~n1.exe %~n1.o -L"%CURDIR%voc/lib" -lvoc-OC -lmingw32
  11. SET MYEXITCODE=%ERRORLEVEL%
  12. EXIT /b %MYEXITCODE%