add a second, optional, parameter for Debug or Release versions of the tools

X-Trac-URL: https://ssl.icu-project.org/trac/ticket/14



git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@132 0a8b766c-62c9-45f9-954d-7f2943c9ead0
This commit is contained in:
Markus Scherer 1999-10-27 18:40:52 +00:00
parent 5bbb7bc957
commit ced5efe97a

View file

@ -10,16 +10,17 @@ if "%ICU_DATA%"=="" set ICU_DATA=%1\icu\data\
rem toolversion: Debug or Release
set toolversion=Release
if not "%2"=="" set toolversion=%2
rem create conversion tables
echo create conversion tables
cd makeconv
call mkcnvfle %toolversion% %1
rem create locale resource bundles
echo create locale resource bundles
cd ..\genrb
call genrb %toolversion% %1
rem create binary collation tables
echo create binary collation tables
cd ..\gencol
%toolversion%\gencol
@ -32,5 +33,6 @@ 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
echo a second, optional, parameter can be Debug or Release to specify the tools versions
:end