scuffed-code/icu4c/source/tools/makedata.bat
1999-10-14 22:14:04 +00:00

37 lines
759 B
Batchfile
Executable File

@echo off
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\icu\data\
rem toolversion: Debug or Release
set toolversion=Release
rem create conversion tables
cd makeconv
call mkcnvfle %toolversion% %1
rem create locale resource bundles
cd ..\genrb
call genrb %toolversion% %1
rem create binary collation tables
cd ..\gencol
%toolversion%\gencol
cd ..
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
echo the current directory must be the icu\source\tools directory with makedata.bat
:end