2005-11-30 23:44:06 +00:00
< !DOCTYPE project [
2007-03-02 23:55:27 +00:00
<!ENTITY icu-config SYSTEM "./icu-config.xml">
2009-11-12 21:53:42 +00:00
<!ENTITY icu-locale-deprecates SYSTEM "./icu-locale-deprecates.xml">
2014-03-12 04:34:00 +00:00
<!ENTITY icu-coll-deprecates SYSTEM "./icu-coll-deprecates.xml">
2005-11-30 23:44:06 +00:00
]>
<!--
/*
*******************************************************************************
2014-01-30 01:42:28 +00:00
* Copyright (C) 2005-2014, International Business Machines Corporation and *
2005-11-30 23:44:06 +00:00
* others. All Rights Reserved. *
*******************************************************************************
*/
-->
2005-12-08 23:44:39 +00:00
<project name= "icu-build" default= "all" basedir= "." >
2005-11-30 23:44:06 +00:00
<target name= "init" >
<tstamp />
2007-03-05 21:44:54 +00:00
2005-11-30 23:44:06 +00:00
<!-- Load environment variables -->
<property environment= "env" />
2007-03-05 21:44:54 +00:00
2013-08-05 18:26:24 +00:00
<!-- Ant won't set properties that have already been set, so environment variables that have been set before won't be clobbered. -->
<property name= "env.ICU4C_DIR" location= "../.." />
2007-03-05 21:44:54 +00:00
2013-08-05 18:26:24 +00:00
<condition property= "is.cldr.dir.set" >
2005-11-30 23:44:06 +00:00
<isset property= "env.CLDR_DIR" />
2007-03-05 21:44:54 +00:00
</condition >
2013-08-05 18:26:24 +00:00
<fail unless= "is.cldr.dir.set" message= "Please set the CLDR_DIR environment variable to the top level ICU source dir (containing 'common')." />
2007-03-05 21:44:54 +00:00
2013-08-05 18:26:24 +00:00
<available property= "cldrtools.dir" value= "${env.CLDR_DIR}/cldr-tools" file= "${env.CLDR_DIR}/cldr-tools" type= "dir" />
2013-08-17 04:34:27 +00:00
<available property= "cldrtools.dir" value= "${env.CLDR_DIR}/tools/java" file= "${env.CLDR_DIR}/tools/java" type= "dir" />
2013-08-05 18:26:24 +00:00
<fail unless= "cldrtools.dir" message= "Please make sure that the CLDR tools directory is checked out into CLDR_DIR" />
2005-11-30 23:44:06 +00:00
2013-08-05 18:26:24 +00:00
<available property= "env.CLDR_CLASSES" value= "${cldrtools.dir}/classes" file= "${cldrtools.dir}/classes" type= "dir" />
<available property= "cldrtools.jar" value= "${cldrtools.dir}/cldr.jar" file= "${cldrtools.dir}/cldr.jar" type= "file" />
<condition property= "is.cldr.classes.set" >
2005-11-30 23:44:06 +00:00
<or >
2013-08-05 18:26:24 +00:00
<isset property= "env.CLDR_CLASSES" />
<isset property= "cldrtools.jar" />
2005-11-30 23:44:06 +00:00
</or>
2013-08-05 18:26:24 +00:00
</condition>
<fail unless= "is.cldr.classes.set" message= "CLDR classes not found in ${cldrtools.dir}. Please either set the CLDR_CLASSES environment variable or build cldr.jar." />
2007-03-05 21:44:54 +00:00
2013-08-05 18:26:24 +00:00
<echo message= "java home: ${java.home}" />
2005-11-30 23:44:06 +00:00
<echo message= "java version: ${java.version}" />
<echo message= "ant java version: ${ant.java.version}" />
<echo message= "${ant.version}" />
</target>
<target name= "setup" >
<taskdef name= "cldr-build" classname= "org.unicode.cldr.ant.CLDRBuild" >
<classpath >
<pathelement path= "${java.class.path}/" />
<pathelement path= "${env.CLDR_CLASSES}" />
2013-08-05 18:26:24 +00:00
<pathelement location= "${cldrtools.jar}" />
<fileset dir= "${cldrtools.dir}/libs" includes= "*.jar" />
2005-11-30 23:44:06 +00:00
</classpath>
2007-03-05 21:44:54 +00:00
</taskdef>
2005-11-30 23:44:06 +00:00
</target>
<!-- target for generating ICU data -->
2013-08-12 23:27:00 +00:00
<target name= "all" depends= "locales, collation, rbnf, supplementalData, metadata, metaZones, windowsZones, likelySubtags, plurals, numberingSystems, translit, brkitr, keyTypeData, genderList, postalCodeData, dayPeriods" />
2007-07-23 19:41:33 +00:00
<!-- parallel target -->
<target name= "pall" depends= "init" >
<parallel threadsPerProcessor = "1" >
<sequential >
2009-11-12 21:53:42 +00:00
<ant target= 'locales' />
2007-07-23 19:41:33 +00:00
</sequential>
<sequential >
<ant target= 'collation' >
</ant>
</sequential>
2008-12-12 01:04:38 +00:00
<sequential >
<ant target= 'rbnf' >
</ant>
</sequential>
2007-07-23 19:41:33 +00:00
<ant target= 'supplementalData' >
</ant>
<sequential >
<ant target= 'brkitr' >
</ant>
</sequential>
2007-07-25 23:24:55 +00:00
<sequential >
<ant target= 'translit' >
</ant>
2009-11-12 21:53:42 +00:00
<!-- <ant target='trnsfiles'></ant> Not ANT - built - see
note below. -->
2007-07-25 23:24:55 +00:00
</sequential>
2014-01-30 01:42:28 +00:00
<sequential >
<ant target= 'keyTypeData' />
</sequential>
<sequential >
<ant target= 'genderList' />
</sequential>
<sequential >
<ant target= 'postalCodeData' />
</sequential>
<sequential >
<ant target= 'dayPeriods' />
</sequential>
2007-07-23 19:41:33 +00:00
</parallel>
</target>
2005-11-30 23:44:06 +00:00
<target name= "locales" depends= "init,setup" description= "builds locale files in ICU text format" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile= ".*xml" destFile= ".*txt" >
2005-11-30 23:44:06 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "--sourcedir" value= "${env.CLDR_DIR}/common/main" />
<arg name= "--destdir" value= "${env.ICU4C_DIR}/source/data/locales" />
<arg name= "--specialsdir" value= "${env.ICU4C_DIR}/source/data/xml/main" />
<arg name= "--supplementaldir" value= "${env.CLDR_DIR}/common/supplemental" />
2012-08-01 20:40:39 +00:00
<arg name= "--type" value= "locales" />
2013-08-12 23:27:00 +00:00
<arg name= "--makefile" value= "resfiles.mk" />
2005-11-30 23:44:06 +00:00
</args>
2009-11-12 21:53:42 +00:00
<remapper >
<remap sourcePath= "/Keys" targetDir= "lang" />
<remap sourcePath= "/Languages" targetDir= "lang" />
2014-12-17 23:25:39 +00:00
<remap sourcePath= "/Languages%short" targetDir= "lang" />
2014-09-02 23:18:20 +00:00
<remap sourcePath= "/Languages%secondary" targetDir= "lang" />
<remap sourcePath= "/Languages%variant" targetDir= "lang" />
2009-11-12 21:53:42 +00:00
<remap sourcePath= "/Scripts" targetDir= "lang" />
2014-09-02 23:18:20 +00:00
<remap sourcePath= "/Scripts%secondary" targetDir= "lang" />
<remap sourcePath= "/Scripts%short" targetDir= "lang" />
2011-09-02 01:04:36 +00:00
<remap sourcePath= "/Scripts%stand-alone" targetDir= "lang" />
2014-09-02 23:18:20 +00:00
<remap sourcePath= "/Scripts%variant" targetDir= "lang" />
2009-11-12 21:53:42 +00:00
<remap sourcePath= "/Types" targetDir= "lang" />
2014-09-02 23:18:20 +00:00
<remap sourcePath= "/Types%short" targetDir= "lang" />
2009-11-12 21:53:42 +00:00
<remap sourcePath= "/Variants" targetDir= "lang" />
2014-09-03 05:52:50 +00:00
<remap sourcePath= "/Variants%secondary" targetDir= "lang" />
2009-11-12 21:53:42 +00:00
<remap sourcePath= "/codePatterns" targetDir= "lang" />
<remap sourcePath= "/localeDisplayPattern" targetDir= "lang" />
<remap sourcePath= "/Countries" targetDir= "region" />
2014-09-02 23:18:20 +00:00
<remap sourcePath= "/Countries%variant" targetDir= "region" />
2014-12-17 23:25:39 +00:00
<remap sourcePath= "/Countries%short" targetDir= "region" />
2009-11-12 21:53:42 +00:00
<remap sourcePath= "/Currencies" targetDir= "curr" />
2014-09-02 23:18:20 +00:00
<remap sourcePath= "/Currencies%narrow" targetDir= "curr" />
<remap sourcePath= "/Currencies%variant" targetDir= "curr" />
2009-11-12 21:53:42 +00:00
<remap sourcePath= "/CurrencyPlurals" targetDir= "curr" />
<remap sourcePath= "/CurrencyUnitPatterns" targetDir= "curr" />
<remap sourcePath= "/currencySpacing" targetDir= "curr" />
<remap sourcePath= "/zoneStrings" targetDir= "zone" />
2014-12-04 20:11:53 +00:00
<remap sourcePath= "/durationUnits" targetDir= "unit" />
2014-09-11 10:16:22 +00:00
<remap sourcePath= "/units" targetDir= "unit" />
<remap sourcePath= "/unitsShort" targetDir= "unit" />
<remap sourcePath= "/unitsNarrow" targetDir= "unit" />
2009-11-12 21:53:42 +00:00
</remapper>
2005-11-30 23:44:06 +00:00
<!-- http://ant.apache.org/faq.html#xml - entity - include -->
&icu-config;
2013-08-12 23:27:00 +00:00
&icu-locale-deprecates;
2005-11-30 23:44:06 +00:00
</run>
</cldr-build>
</target>
<target name= "collation" depends= "init,setup" description= "builds collation files in ICU text format" >
2013-06-12 22:40:34 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile= ".*xml" destFile= ".*txt" >
2005-11-30 23:44:06 +00:00
<run >
<args >
<arg name= "--sourcedir" value= "${env.CLDR_DIR}/common/collation" />
<arg name= "--destdir" value= "${env.ICU4C_DIR}/source/data/coll" />
<arg name= "--specialsdir" value= "${env.ICU4C_DIR}/source/data/xml/collation" />
2013-06-12 22:40:34 +00:00
<arg name= "--type" value= "collation" />
2013-08-12 23:27:00 +00:00
<arg name= "--makefile" value= "colfiles.mk" />
2005-11-30 23:44:06 +00:00
</args>
<!-- http://ant.apache.org/faq.html#xml - entity - include -->
&icu-config;
2014-03-12 04:34:00 +00:00
&icu-coll-deprecates;
2005-11-30 23:44:06 +00:00
</run>
</cldr-build>
</target>
2008-12-12 01:04:38 +00:00
<target name= "rbnf" depends= "init,setup" description= "builds rbnf files in ICU text format" >
2013-08-09 00:34:22 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile= ".*xml" destFile= ".*txt" >
2008-12-12 01:04:38 +00:00
<run >
<args >
<arg name= "--sourcedir" value= "${env.CLDR_DIR}/common/rbnf" />
<arg name= "--destdir" value= "${env.ICU4C_DIR}/source/data/rbnf" />
<arg name= "--specialsdir" value= "${env.ICU4C_DIR}/source/data/xml/rbnf" />
2013-08-09 00:34:22 +00:00
<arg name= "--type" value= "rbnf" />
2013-08-12 23:27:00 +00:00
<arg name= "--makefile" value= "rbnffiles.mk" />
2008-12-12 01:04:38 +00:00
</args>
<!-- http://ant.apache.org/faq.html#xml - entity - include -->
&icu-config;
</run>
</cldr-build>
</target>
2005-12-09 02:54:28 +00:00
<target name= "supplementalData" depends= "init,setup" description= "builds supplementalData.txt from supplementalData.xml" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "supplementalData.txt" noArgs= "true" >
2005-11-30 23:44:06 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-01 20:40:39 +00:00
<arg name= "-t" value= "supplementalData" />
2005-11-30 23:44:06 +00:00
</args>
2009-11-12 21:53:42 +00:00
<remapper >
<remap sourcePath= "/CurrencyMap" targetDir= "curr" />
<remap sourcePath= "/CurrencyMeta" targetDir= "curr" />
</remapper>
2005-11-30 23:44:06 +00:00
</run>
</cldr-build>
</target>
2011-04-11 16:22:18 +00:00
<target name= "metadata" depends= "init,setup" description= "builds metadata.txt from supplementalMetadata.xml" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "metadata.txt" noArgs= "true" >
2011-04-11 16:22:18 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-01 20:40:39 +00:00
<arg name= "-t" value= "metadata" />
2011-04-11 16:22:18 +00:00
</args>
</run>
</cldr-build>
</target>
2010-02-02 04:55:55 +00:00
<target name= "metaZones" depends= "init,setup" description= "builds metaZones.txt from metaZones.xml" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "metaZones.txt" noArgs= "true" >
2007-11-28 20:49:58 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-01 20:40:39 +00:00
<arg name= "-t" value= "metaZones" />
2007-11-28 20:49:58 +00:00
</args>
</run>
</cldr-build>
</target>
2010-02-02 04:55:55 +00:00
<target name= "windowsZones" depends= "init,setup" description= "builds windowsZones.txt from windowsZones.xml" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "windowsZones.txt" noArgs= "true" >
2010-01-26 06:03:14 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-01 20:40:39 +00:00
<arg name= "-t" value= "windowsZones" />
2010-01-26 06:03:14 +00:00
</args>
</run>
</cldr-build>
</target>
2008-06-18 16:53:06 +00:00
<target name= "likelySubtags" depends= "init,setup" description= "builds likelySubtags.txt from likelySubtags.xml" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "likelySubtags.txt" noArgs= "true" >
2008-06-18 16:53:06 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-01 20:40:39 +00:00
<arg name= "-t" value= "likelySubtags" />
2008-06-18 16:53:06 +00:00
</args>
</run>
</cldr-build>
</target>
<target name= "plurals" depends= "init,setup" description= "builds plurals.txt from plurals.xml" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "plurals.txt" noArgs= "true" >
2008-06-18 16:53:06 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-01 20:40:39 +00:00
<arg name= "-t" value= "plurals" />
2008-06-18 16:53:06 +00:00
</args>
</run>
</cldr-build>
</target>
2009-01-06 17:05:48 +00:00
<target name= "numberingSystems" depends= "init,setup" description= "builds numberingSystems.txt from numberingSystems.xml" >
2012-08-01 20:40:39 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "numberingSystems.txt" noArgs= "true" >
2009-01-06 17:05:48 +00:00
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-01 20:40:39 +00:00
<arg name= "-t" value= "numberingSystems" />
2009-01-06 17:05:48 +00:00
</args>
</run>
</cldr-build>
</target>
2012-09-27 01:22:40 +00:00
<target name= "genderList" depends= "init,setup" description= "builds genderList.txt from genderList.xml" >
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "genderList.txt" noArgs= "true" >
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
<arg name= "-t" value= "genderList" />
</args>
</run>
</cldr-build>
</target>
<target name= "postalCodeData" depends= "init,setup" description= "builds postalCodeData.txt from postalCodeData.xml" >
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "postalCodeData.txt" noArgs= "true" >
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
<arg name= "-t" value= "postalCodeData" />
</args>
</run>
</cldr-build>
</target>
<target name= "dayPeriods" depends= "init,setup" description= "builds dayPeriods.txt from dayPeriods.xml" >
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" destFile= "dayPeriods.txt" noArgs= "true" >
<!-- launch the tool and generate the data after reading the config file -->
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/supplemental" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
<arg name= "-t" value= "dayPeriods" />
</args>
</run>
</cldr-build>
</target>
2006-04-21 00:55:24 +00:00
<target name= "brkitr" depends= "init,setup" description= "builds break iterator files in ICU text format" >
2013-08-09 00:34:22 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile= ".*xml" destFile= ".*txt" >
2006-04-21 00:55:24 +00:00
<run >
<args >
2013-10-29 15:50:54 +00:00
<arg name= "--sourcedir" value= "${env.CLDR_DIR}/common/segments" />
<arg name= "--specialsdir" value= "${env.ICU4C_DIR}/source/data/xml/brkitr" />
2006-04-21 00:55:24 +00:00
<arg name= "--destdir" value= "${env.ICU4C_DIR}/source/data/brkitr" />
2013-08-09 00:34:22 +00:00
<arg name= "--type" value= "brkitr" />
2013-08-12 23:27:00 +00:00
<arg name= "--makefile" value= "brkfiles.mk" />
2006-04-21 00:55:24 +00:00
</args>
<!-- The entity include is not required for this target -->
2007-03-05 21:44:54 +00:00
<!-- http://ant.apache.org/faq.html#xml - entity - include
2006-04-21 00:55:24 +00:00
&icu-config;
-->
</run>
</cldr-build>
</target>
2010-02-08 16:46:01 +00:00
<target name= "keyTypeData" depends= "init,setup" description= "builds keyTypeData.txt and timezoneTypes.txt from bcp47/*.xml" >
2012-08-06 17:41:38 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.NewLdml2IcuConverter" noArgs= "true" >
2010-02-08 16:46:01 +00:00
<run >
<args >
<arg name= "-s" value= "${env.CLDR_DIR}/common/bcp47" />
<arg name= "-d" value= "${env.ICU4C_DIR}/source/data/misc" />
2012-08-06 17:41:38 +00:00
<arg name= "-t" value= "keyTypeData" />
2010-02-08 16:46:01 +00:00
</args>
</run>
</cldr-build>
</target>
2013-10-29 15:50:54 +00:00
<target name= "translit" depends= "init,setup" description= "builds collation files in ICU text format" >
2006-06-23 16:31:07 +00:00
<cldr-build toolName= "org.unicode.cldr.icu.ConvertTransforms" srcFile= ".*xml" destFile= ".*txt" >
<run >
<args >
2014-03-12 04:34:00 +00:00
<arg name= "-m" value= "((?!.*(Canadian|Ethiopic|ug-Latin).*).*)" />
2006-06-23 16:31:07 +00:00
<arg name= "--sourcedir" value= "${env.CLDR_DIR}/common/transforms" />
<arg name= "--destdir" value= "${env.ICU4C_DIR}/source/data/translit" />
<arg name= "--commentSkip" />
</args>
<!-- http://ant.apache.org/faq.html#xml - entity - include -->
2007-03-05 21:44:54 +00:00
2006-06-23 16:31:07 +00:00
</run>
</cldr-build>
</target>
2007-07-25 23:24:55 +00:00
<!-- we don't generate en.txt or el.txt - so don't change trnsfiles.mk for now. -->
<!--
<target name= "trnsfiles" depends= "init, setup" description= "builds trnsfiles.mk" >
<cldr-build toolName= "org.unicode.cldr.icu.ConvertTransforms" srcFile= ".*xml" destFile= "trnsfiles.mk" noArgs= "true" >
2006-06-23 16:31:07 +00:00
<run >
2007-07-25 23:24:55 +00:00
<args > [ double hyphen not allowed in comments - transpose -" to fix below ]
<arg name= -"-sourcedir" value= "${env.CLDR_DIR}/common/transforms" />
<arg name= -"-destdir" value= "${env.ICU4C_DIR}/source/data/translit" />
<arg name= -"-commentSkip"/ >
<arg name= -"-writeIndex"/ >
2006-06-23 16:31:07 +00:00
</args>
</run>
</cldr-build>
2007-07-25 23:24:55 +00:00
</target> -->
2005-11-30 23:44:06 +00:00
<target name= "clean" depends= "init, setup" description= "deletes all txt files and mk files from coll and locales directories" >
<delete >
<fileset id= "locales" dir= "${env.ICU4C_DIR}/source/data/locales" >
<include name= "*.txt" />
2008-06-20 22:19:23 +00:00
</fileset>
<fileset id= "resfiles" dir= "${env.ICU4C_DIR}/source/data/locales" >
2005-11-30 23:44:06 +00:00
<include name= "resfiles.mk" />
</fileset>
2010-03-04 05:41:47 +00:00
<fileset id= "locales_split" dir= "${env.ICU4C_DIR}/source/data" >
<include name= "curr/*.txt" />
<include name= "curr/resfiles.mk" />
<include name= "lang/*.txt" />
<include name= "lang/resfiles.mk" />
<include name= "region/*.txt" />
<include name= "region/resfiles.mk" />
<include name= "zone/*.txt" />
<include name= "zone/resfiles.mk" />
2014-09-02 23:18:20 +00:00
<exclude name= "zone/tzdbNames.txt" />
2014-09-11 10:16:22 +00:00
<include name= "unit/*.txt" />
<include name= "unit/resfiles.mk" />
2009-11-12 21:53:42 +00:00
</fileset>
2008-06-20 22:19:23 +00:00
<fileset id= "collation" dir= "${env.ICU4C_DIR}/source/data/coll" >
2005-11-30 23:44:06 +00:00
<include name= "*.txt" />
2008-06-20 22:19:23 +00:00
</fileset>
<fileset id= "colfiles" dir= "${env.ICU4C_DIR}/source/data/coll" >
2005-11-30 23:44:06 +00:00
<include name= "colfiles.mk" />
</fileset>
2010-03-04 05:41:47 +00:00
<fileset id= "translit" dir= "${env.ICU4C_DIR}/source/data/translit" >
2007-07-25 23:24:55 +00:00
<include name= "*_*.txt" />
<include name= "root.txt" />
</fileset>
2010-03-04 05:41:47 +00:00
<fileset id= "brkitr" dir= "${env.ICU4C_DIR}/source/data/brkitr" >
2007-03-05 21:44:54 +00:00
<!-- brkitr directory contains bunch of txt files that are not produced by LDML2ICUConverter.
2006-04-21 00:55:24 +00:00
So can't clean up everything. This needs to be updated when new files are added to xml/brkitr directory -->
2010-03-04 05:41:47 +00:00
<include name= "root.txt" />
<include name= "el.txt" />
<include name= "en.txt" />
<include name= "en_US.txt" />
<include name= "en_US_POSIX.txt" />
2010-10-26 03:23:21 +00:00
<include name= "fi.txt" />
2010-03-04 05:41:47 +00:00
<include name= "ja.txt" />
</fileset>
<fileset id= "brkfiles" dir= "${env.ICU4C_DIR}/source/data/brkitr" >
2006-04-21 00:55:24 +00:00
<include name= "brkfiles.mk" />
</fileset>
2008-06-20 22:19:23 +00:00
<fileset id= "supplementalData" dir= "${env.ICU4C_DIR}/source/data/misc" >
2006-10-27 17:55:54 +00:00
<include name= "supplementalData.txt" />
2005-11-30 23:44:06 +00:00
</fileset>
2010-03-04 05:41:47 +00:00
<fileset id= "rbnf" dir= "${env.ICU4C_DIR}/source/data/rbnf" >
<include name= "*.txt" />
</fileset>
<fileset id= "rbnffiles" dir= "${env.ICU4C_DIR}/source/data/rbnf" >
<include name= "rbnffiles.mk" />
</fileset>
2011-04-11 16:22:18 +00:00
<fileset id= "metadata" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "metadata.txt" />
</fileset>
2010-02-02 04:55:55 +00:00
<fileset id= "metaZones" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "metaZones.txt" />
2007-11-28 20:49:58 +00:00
</fileset>
2010-02-02 04:55:55 +00:00
<fileset id= "windowsZones" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "windowsZones.txt" />
2010-01-26 06:03:14 +00:00
</fileset>
2008-06-20 22:19:23 +00:00
<fileset id= "likelySubtags" dir= "${env.ICU4C_DIR}/source/data/misc" >
2008-06-18 16:53:06 +00:00
<include name= "likelySubtags.txt" />
</fileset>
<fileset id= "plurals" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "plurals.txt" />
</fileset>
2009-01-06 17:05:48 +00:00
<fileset id= "numberingSystems" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "numberingSystems.txt" />
</fileset>
2010-03-04 05:41:47 +00:00
<fileset id= "keyTypeData" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "keyTypeData.txt" />
<include name= "timezoneTypes.txt" />
</fileset>
2012-09-27 01:22:40 +00:00
<fileset id= "genderList" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "genderList.txt" />
</fileset>
<fileset id= "postalCodeData" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "postalCodeData.txt" />
</fileset>
<fileset id= "dayPeriods" dir= "${env.ICU4C_DIR}/source/data/misc" >
<include name= "dayPeriods.txt" />
</fileset>
2005-11-30 23:44:06 +00:00
</delete>
</target>
2007-03-02 23:55:27 +00:00
</project>