mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
- Propagate build enhancements from Phil to Unix/Mac build. - Add removal of .upd files to Clean.cmd script in Binary directory.
16 lines
413 B
Batchfile
16 lines
413 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 *.upd del *.upd
|
|
if exist *.pdf del *.pdf
|
|
if exist *.eeprom del *.eeprom
|
|
|
|
setlocal & cd Apps && call Clean || exit /b 1 & endlocal
|
|
setlocal & cd CPM3 && call Clean || exit /b 1 & endlocal
|
|
setlocal & cd ZPM3 && call Clean || exit /b 1 & endlocal
|