forked from MirrorRepos/RomWBW
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.
22 lines
354 B
22 lines
354 B
@echo off
|
|
setlocal
|
|
|
|
echo Cleaning Source...
|
|
pushd Source
|
|
call Clean.cmd
|
|
popd
|
|
|
|
echo Cleaning Apps\core...
|
|
pushd Apps\core
|
|
del /q *.*
|
|
popd
|
|
|
|
echo Cleaning Apps\crossdev...
|
|
pushd Apps\crossdev
|
|
call Clean.bat
|
|
popd
|
|
|
|
choice /m "Clean Output directory?"
|
|
if errorlevel 2 goto :eof
|
|
echo Cleaning Output...
|
|
if exist Output\*.* del Output\*.* /Q
|