rebuildmx2cc_raspbian.bat 476 B

12345678910111213141516
  1. echo off
  2. call common.bat
  3. echo.
  4. echo ***** Rebuilding mx2cc *****
  5. echo.
  6. %mx2cc% makemods -clean -config=release -target=raspbian monkey libc miniz stb-image stb-image-write stb-vorbis std
  7. if %errorlevel% neq 0 exit /b %errorlevel%
  8. %mx2cc% makeapp -build -clean -apptype=console -config=release -target=raspbian ../src/mx2cc/mx2cc.monkey2
  9. if %errorlevel% neq 0 exit /b %errorlevel%
  10. copy %mx2cc_raspbian_new% ..\bin\mx2cc_raspbian
  11. if %errorlevel% neq 0 exit /b %errorlevel%