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.
20 lines
589 B
20 lines
589 B
@echo off
|
|
setlocal
|
|
|
|
if exist *.bin del *.bin
|
|
if exist *.dat del *.dat
|
|
if exist *.com del *.com
|
|
if exist *.img del *.img
|
|
if exist *.rom del *.rom
|
|
if exist *.hex del *.hex
|
|
if exist *.upd del *.upd
|
|
if exist *.pdf del *.pdf
|
|
if exist *.eeprom del *.eeprom
|
|
|
|
pushd Apps && call Clean || exit /b 1 & popd
|
|
pushd CPM22 && call Clean || exit /b 1 & popd
|
|
pushd CPM3 && call Clean || exit /b 1 & popd
|
|
pushd QPM && call Clean || exit /b 1 & popd
|
|
pushd ZSDOS && call Clean || exit /b 1 & popd
|
|
pushd ZPM3 && call Clean || exit /b 1 & popd
|
|
pushd CPNET && call Clean || exit /b 1 & popd
|
|
|