forked from MirrorRepos/RomWBW
17 lines
403 B
Batchfile
17 lines
403 B
Batchfile
@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 CPM3 && call Clean || exit /b 1 & popd
|
|
pushd ZPM3 && call Clean || exit /b 1 & popd
|