From 8e83685314f466b4f55710dc601490071d21173e Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Mon, 27 Oct 2003 23:57:54 +0000 Subject: [PATCH] ICU-3190 These files aren't being used. X-SVN-Rev: 13499 --- icu4c/source/data/README | 11 ----------- icu4c/source/data/makedata.bat | 35 ---------------------------------- 2 files changed, 46 deletions(-) delete mode 100644 icu4c/source/data/README delete mode 100755 icu4c/source/data/makedata.bat diff --git a/icu4c/source/data/README b/icu4c/source/data/README deleted file mode 100644 index aa1a78f37a0..00000000000 --- a/icu4c/source/data/README +++ /dev/null @@ -1,11 +0,0 @@ -== Copyright (c) 2000 IBM, Inc. All rights reserved. == - - -This directory contains the intermediate, generated ICU data. For example, -.res, .cnv, and some .dat files end up here. - -It is also used as a temporary directory by some ICU tools build processes. - -You should NOT set your ICU_DATA directory to point here. Instead, -point it to ".." (that is, icu/source/data). - diff --git a/icu4c/source/data/makedata.bat b/icu4c/source/data/makedata.bat deleted file mode 100755 index b5d45ce11ee..00000000000 --- a/icu4c/source/data/makedata.bat +++ /dev/null @@ -1,35 +0,0 @@ -@echo off -rem Copyright (c) 1999-2002, International Business Machines Corporation and -rem others. All Rights Reserved. -rem makedata.bat -rem batch file for Windows for creating the ICU data files -rem parameter: -rem %1 path where the icu folder resides - -if "%1"=="" goto :error - -if "%ICU_DATA%"=="" set ICU_DATA=%1\data\ - -rem toolversion: Debug or Release -set toolversion=Release -if not "%2"=="" set toolversion=%2 - -nmake /f makedata.mak icup=%1 cfg=%2 %3 %4 -if not errorlevel 9009 goto :othererror -echo Build tools are not on path! Please make sure that MSVC++ is setup correctly! -goto :error -:othererror -if errorlevel 0 goto :end -echo Nmake has unsuccesfully finished with errorcode %errorlevel%! -goto :end - -:error -echo call makedata with the absolute path to the icu directory -echo for example, if the full path is d:\mytools\icu then call -echo makedata d:\mytools\icu -echo a second, optional, parameter can be Debug or Release to specify the tools versions -echo. -echo the current directory must be the icu\source\tools directory with makedata.bat -echo also, the cl compiler and link linker must be on the PATH - -:end