Files
Pegasys-RomWBW/Source/Prop/Build.cmd
Wayne Warthen 0834762f6e Add BEL functionality from Michael Schweikert
Added BEL functionality to Propeller-based consoles
Build directory cleanup
2018-03-12 16:24:46 -07:00

21 lines
284 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
if errorlevel 1 goto :eof
move /Y %1.eeprom "..\..\Binary"
goto :eof