You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
311 B

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