Files
RomWBW/Source/Prop/Build.cmd
Wayne Warthen 8e17067104 Build Improvements
Corrects some situations where build fails, but kept going.
2021-07-24 11:24:48 -07:00

20 lines
279 B
Batchfile

@echo off
setlocal
set TOOLS=../../Tools
set PATH=%TOOLS%\bst;%PATH%
call :bstc PropIO
call :bstc PropIO2
call :bstc ParPortProp
goto :eof
:bstc
echo.
echo Building %1...
bstc Spin\%1 -e -l || exit /b
move /Y %1.eeprom "..\..\Binary" || exit /b
goto :eof