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.
18 lines
329 B
18 lines
329 B
@echo off
|
|
setlocal
|
|
|
|
echo Cleaning Source...
|
|
pushd Source
|
|
call Clean.cmd
|
|
popd
|
|
|
|
echo Cleaning Apps...
|
|
pushd Apps\Source
|
|
call Clean.cmd
|
|
popd
|
|
|
|
choice /m "Clean Output directories?"
|
|
if errorlevel 2 goto :eof
|
|
echo Cleaning Output...
|
|
if exist Output\*.* del Output\*.* /Q
|
|
if exist Apps\Output\*.* del Apps\Output\*.* /Q
|