2003-07-03 14:44:36 +02:00
|
|
|
@echo off
|
|
|
|
|
2003-07-05 16:45:43 +02:00
|
|
|
@call setenvvar.bat
|
|
|
|
@if errorlevel 1 (goto :END)
|
|
|
|
|
|
|
|
@echo Cleaning temporary directories
|
2003-07-05 04:20:20 +02:00
|
|
|
@rmdir /S /Q %ROOT_PATH%\output 2>nul
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\gen 2>nul
|
2003-07-05 05:23:11 +02:00
|
|
|
@rmdir /S /Q %ROOT_PATH%\temp 2>nul
|
2003-07-05 04:20:20 +02:00
|
|
|
|
2005-07-19 15:17:01 +02:00
|
|
|
@echo Cleaning INTL
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\extern\icu\bin
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\extern\icu\include
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\extern\icu\lib
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\extern\icu\source\data\out
|
|
|
|
@del /Q %ROOT_PATH%\extern\icu\source\extra\uconv\resources\*.res
|
|
|
|
@del %ROOT_PATH%\extern\icu\source\extra\uconv\pkgdatain.txt
|
|
|
|
@del %ROOT_PATH%\extern\icu\source\stubdata\stubdatabuilt.txt
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\extern\icu\source\test\testdata\out
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\extern\icu\source\tools\gencmn\decmn_Win32_Release
|
|
|
|
@rmdir /S /Q %ROOT_PATH%\extern\icu\source\tools\genrb\derb_Win32_Release
|
|
|
|
|
2003-07-09 01:05:09 +02:00
|
|
|
@echo Cleaning and install build files
|
2003-07-05 04:23:02 +02:00
|
|
|
@del *.log 2>nul
|
2003-07-05 04:20:20 +02:00
|
|
|
@del %ROOT_PATH%\src\include\gen\autoconfig.h 2>nul
|
|
|
|
@del %ROOT_PATH%\src\include\gen\blrtable.h 2>nul
|
|
|
|
@del %ROOT_PATH%\builds\win32\msvc6\*.plg 2>nul
|
|
|
|
@del %ROOT_PATH%\builds\win32\msvc7\*.plg 2>nul
|
2003-07-09 01:05:09 +02:00
|
|
|
@del %ROOT_PATH%\builds\install\arch-specific\win32\*.dll 2>nul
|
2004-01-06 11:33:18 +01:00
|
|
|
@rmdir /s /q %ROOT_PATH%\builds\win32\install_image 2>nul
|
|
|
|
|