mirror of https://github.com/wwarthen/RomWBW.git
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.
37 lines
635 B
37 lines
635 B
@echo off
|
|
setlocal
|
|
|
|
echo Cleaning Source...
|
|
pushd Source
|
|
call Clean.cmd
|
|
popd
|
|
|
|
echo Cleaning Apps...
|
|
pushd Apps
|
|
call Clean.cmd
|
|
popd
|
|
|
|
echo Cleaning CPM22...
|
|
pushd CPM22
|
|
call Clean.cmd
|
|
popd
|
|
|
|
echo Cleaning ZCPR...
|
|
pushd ZCPR
|
|
call Clean.cmd
|
|
popd
|
|
|
|
echo Cleaning ZCPR-DJ...
|
|
pushd ZCPR-DJ
|
|
call Clean.cmd
|
|
popd
|
|
|
|
if exist *.img del *.img /Q
|
|
if exist debug.log del debug.log
|
|
|
|
choice /m "Clean Output directories?"
|
|
if errorlevel 2 goto :eof
|
|
echo Cleaning Output directories...
|
|
if exist Output\*.* del Output\*.* /Q
|
|
if exist OutputUNA\*.* del OutputUNA\*.* /Q
|
|
if exist OutputUNALOAD\*.* del OutputUNALOAD\*.* /Q
|
|
|