forked from MirrorRepos/RomWBW
- The naming of ZZRCC was incorrectly ZZRC. Corrected. - Max Scane has provided a small bug fix for CLRDIR. - Minor build updates for new HTalk utility.
22 lines
704 B
Batchfile
22 lines
704 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
if exist *.bin del *.bin
|
|
if exist *.com del *.com
|
|
if exist *.lst del *.lst
|
|
if exist *.hex del *.hex
|
|
if exist *.prn del *.prn
|
|
|
|
pushd XM && call Clean || exit /b 1 & popd
|
|
pushd FDU && call Clean || exit /b 1 & popd
|
|
pushd Tune && call Clean || exit /b 1 & popd
|
|
pushd FAT && call Clean || exit /b 1 & popd
|
|
pushd Test && call Clean || exit /b 1 & popd
|
|
pushd ZMP && call Clean || exit /b 1 & popd
|
|
pushd ZMD && call Clean || exit /b 1 & popd
|
|
pushd Dev && call Clean || exit /b 1 & popd
|
|
pushd VGM && call Clean || exit /b 1 & popd
|
|
pushd cpuspd && call Clean || exit /b 1 & popd
|
|
pushd Survey && call Clean || exit /b 1 & popd
|
|
pushd HTalk && call Clean || exit /b 1 & popd
|