| 123456789101112131415161718192021222324252627282930313233343536373839 |
- @echo OFF
- echo Deleting ugly files...
- set ROOTDIR=..
- set EXTS=*.dcu *.ppu *.a *.dpu *.o *.rst *.bak *.bk? *.~* *.*~ *.or *.obj
- set EXTS=%EXTS% *.tgs *.tgw *.identcache *.local
- call :DELINTREE %ROOTDIR%\Bin
- call :DELINTREE %ROOTDIR%\Demos
- call :DELINTREE %ROOTDIR%\Scripts
- call :DELINTREE %ROOTDIR%\Source\Wrappers
- call :DELINTREE %ROOTDIR%\Source\JpegLib
- call :DELINTREE %ROOTDIR%\Source\ZLib
- call :DELINTREE %ROOTDIR%\Source\Extensions
- call :DELINTREE %ROOTDIR%\Source\Projects
- call :DELINDIR %ROOTDIR%\Source
- call :DELINDIR %ROOTDIR%\Extras\Extensions
- call :DELINTREE %ROOTDIR%\Extras\Demos
- call :DELINTREE %ROOTDIR%\Extras\Tools
- goto :END
- :DELINDIR
- pushd %1
- echo Processing dir: %1
- del /q /f %EXTS% 2>nul 1>nul
- popd
- goto :EOF
- :DELINTREE
- pushd %1
- echo Processing dir tree: %1
- del /q /f /s %EXTS% 2>nul 1>nul
- popd
- goto :EOF
- :END
- echo Clean finished
|