|
1 <!DOCTYPE project [ |
|
2 <!ENTITY icu-config SYSTEM "./icu-config.xml"> |
|
3 <!ENTITY icu-locale-deprecates SYSTEM "./icu-locale-deprecates.xml"> |
|
4 ]> |
|
5 <!-- |
|
6 /* |
|
7 ******************************************************************************* |
|
8 * Copyright (C) 2005-2013, International Business Machines Corporation and * |
|
9 * others. All Rights Reserved. * |
|
10 ******************************************************************************* |
|
11 */ |
|
12 --> |
|
13 <project name="icu-build" default="all" basedir="."> |
|
14 <target name="init"> |
|
15 <tstamp/> |
|
16 |
|
17 <!-- Load environment variables --> |
|
18 <property environment="env"/> |
|
19 |
|
20 <!-- Ant won't set properties that have already been set, so environment variables that have been set before won't be clobbered. --> |
|
21 <property name="env.ICU4C_DIR" location="../.."/> |
|
22 |
|
23 <condition property="is.cldr.dir.set" > |
|
24 <isset property="env.CLDR_DIR" /> |
|
25 </condition > |
|
26 <fail unless="is.cldr.dir.set" message="Please set the CLDR_DIR environment variable to the top level ICU source dir (containing 'common')."/> |
|
27 |
|
28 <available property="cldrtools.dir" value="${env.CLDR_DIR}/cldr-tools" file="${env.CLDR_DIR}/cldr-tools" type="dir"/> |
|
29 <available property="cldrtools.dir" value="${env.CLDR_DIR}/tools/java" file="${env.CLDR_DIR}/tools/java" type="dir"/> |
|
30 <fail unless="cldrtools.dir" message="Please make sure that the CLDR tools directory is checked out into CLDR_DIR"/> |
|
31 |
|
32 <available property="env.CLDR_CLASSES" value="${cldrtools.dir}/classes" file="${cldrtools.dir}/classes" type="dir"/> |
|
33 <available property="cldrtools.jar" value="${cldrtools.dir}/cldr.jar" file="${cldrtools.dir}/cldr.jar" type="file"/> |
|
34 <condition property="is.cldr.classes.set"> |
|
35 <or> |
|
36 <isset property="env.CLDR_CLASSES" /> |
|
37 <isset property="cldrtools.jar" /> |
|
38 </or> |
|
39 </condition> |
|
40 <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."/> |
|
41 |
|
42 <echo message="java home: ${java.home}"/> |
|
43 <echo message="java version: ${java.version}"/> |
|
44 <echo message="ant java version: ${ant.java.version}"/> |
|
45 <echo message="${ant.version}"/> |
|
46 </target> |
|
47 <target name="setup"> |
|
48 <taskdef name="cldr-build" classname="org.unicode.cldr.ant.CLDRBuild"> |
|
49 <classpath> |
|
50 <pathelement path="${java.class.path}/"/> |
|
51 <pathelement path="${env.CLDR_CLASSES}"/> |
|
52 <pathelement location="${cldrtools.jar}"/> |
|
53 <fileset dir="${cldrtools.dir}/libs" includes="*.jar"/> |
|
54 </classpath> |
|
55 </taskdef> |
|
56 </target> |
|
57 <!-- target for generating ICU data --> |
|
58 <target name="all" depends="locales, collation, rbnf, supplementalData, metadata, metaZones, windowsZones, likelySubtags, plurals, numberingSystems, translit, brkitr, keyTypeData, genderList, postalCodeData, dayPeriods" /> |
|
59 <!-- parallel target --> |
|
60 <target name="pall" depends="init"> |
|
61 <parallel threadsPerProcessor ="1"> |
|
62 <sequential> |
|
63 <ant target='locales' /> |
|
64 </sequential> |
|
65 <sequential> |
|
66 <ant target='collation'> |
|
67 </ant> |
|
68 </sequential> |
|
69 <sequential> |
|
70 <ant target='rbnf'> |
|
71 </ant> |
|
72 </sequential> |
|
73 <ant target='supplementalData'> |
|
74 </ant> |
|
75 <sequential> |
|
76 <ant target='brkitr'> |
|
77 </ant> |
|
78 </sequential> |
|
79 <sequential> |
|
80 <ant target='translit'> |
|
81 </ant> |
|
82 <!--<ant target='trnsfiles'></ant> Not ANT-built - see |
|
83 note below. --> |
|
84 </sequential> |
|
85 </parallel> |
|
86 </target> |
|
87 |
|
88 <target name="locales" depends="init,setup" description="builds locale files in ICU text format"> |
|
89 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile=".*xml" destFile=".*txt"> |
|
90 <!-- launch the tool and generate the data after reading the config file --> |
|
91 <run> |
|
92 <args> |
|
93 <arg name="--sourcedir" value="${env.CLDR_DIR}/common/main" /> |
|
94 <arg name="--destdir" value="${env.ICU4C_DIR}/source/data/locales"/> |
|
95 <arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/main"/> |
|
96 <arg name="--supplementaldir" value="${env.CLDR_DIR}/common/supplemental" /> |
|
97 <arg name="--type" value="locales"/> |
|
98 <arg name="--makefile" value="resfiles.mk"/> |
|
99 </args> |
|
100 <remapper> |
|
101 <remap sourcePath="/Keys" targetDir="lang" /> |
|
102 <remap sourcePath="/Languages" targetDir="lang" /> |
|
103 <remap sourcePath="/LanguagesShort" targetDir="lang" /> |
|
104 <remap sourcePath="/Scripts" targetDir="lang" /> |
|
105 <remap sourcePath="/Scripts%stand-alone" targetDir="lang" /> |
|
106 <remap sourcePath="/Types" targetDir="lang" /> |
|
107 <remap sourcePath="/Variants" targetDir="lang" /> |
|
108 <remap sourcePath="/codePatterns" targetDir="lang" /> |
|
109 <remap sourcePath="/localeDisplayPattern" targetDir="lang" /> |
|
110 <remap sourcePath="/Countries" targetDir="region" /> |
|
111 <remap sourcePath="/CountriesShort" targetDir="region" /> |
|
112 <remap sourcePath="/Currencies" targetDir="curr" /> |
|
113 <remap sourcePath="/CurrencyPlurals" targetDir="curr" /> |
|
114 <remap sourcePath="/CurrencyUnitPatterns" targetDir="curr" /> |
|
115 <remap sourcePath="/currencySpacing" targetDir="curr" /> |
|
116 <remap sourcePath="/zoneStrings" targetDir="zone" /> |
|
117 </remapper> |
|
118 <!-- http://ant.apache.org/faq.html#xml-entity-include --> |
|
119 &icu-config; |
|
120 &icu-locale-deprecates; |
|
121 </run> |
|
122 </cldr-build> |
|
123 </target> |
|
124 <target name="collation" depends="init,setup" description="builds collation files in ICU text format"> |
|
125 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile=".*xml" destFile=".*txt"> |
|
126 <run> |
|
127 <args> |
|
128 <arg name="--sourcedir" value="${env.CLDR_DIR}/common/collation" /> |
|
129 <arg name="--destdir" value="${env.ICU4C_DIR}/source/data/coll"/> |
|
130 <arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/collation"/> |
|
131 <arg name="--type" value="collation"/> |
|
132 <arg name="--makefile" value="colfiles.mk"/> |
|
133 </args> |
|
134 <!-- http://ant.apache.org/faq.html#xml-entity-include --> |
|
135 &icu-config; |
|
136 <deprecates> |
|
137 <alias from="de__PHONEBOOK" to="de" rbpath="/collations/default" value="phonebook"/> |
|
138 <alias from="es__TRADITIONAL" to="es" rbpath="/collations/default" value="traditional"/> |
|
139 <alias from="in" to="id" /> |
|
140 <alias from="in_ID" to="id_ID" /> |
|
141 <alias from="iw" to="he" /> |
|
142 <alias from="iw_IL" to="he_IL" /> |
|
143 <alias from="mo" to="ro_MD" /> |
|
144 <alias from="no" to="nb" /> |
|
145 <alias from="no_NO" to="nb_NO" /> |
|
146 <alias from="pa_IN" to="pa_Guru_IN" /> |
|
147 <alias from="sh" to="sr_Latn" /> |
|
148 <alias from="sh_BA" to="sr_Latn_BA" /> |
|
149 <alias from="sh_CS" to="sr_Latn_RS" /> |
|
150 <alias from="sh_YU" to="sr_Latn_RS" /> |
|
151 <alias from="sr_BA" to="sr_Cyrl_BA" /> |
|
152 <alias from="sr_ME" to="sr_Cyrl_ME" /> |
|
153 <alias from="sr_RS" to="sr_Cyrl_RS" /> |
|
154 <alias from="zh_CN" to="zh_Hans_CN" /> |
|
155 <alias from="zh_SG" to="zh_Hans_SG" /> |
|
156 <alias from="zh_HK" to="zh_Hant_HK" /> |
|
157 <alias from="zh_MO" to="zh_Hant_MO" /> |
|
158 <alias from="zh_TW" to="zh_Hant_TW" /> |
|
159 <emptyLocale locale="de_" /> |
|
160 <emptyLocale locale="es_" /> |
|
161 </deprecates> |
|
162 </run> |
|
163 </cldr-build> |
|
164 </target> |
|
165 <target name="rbnf" depends="init,setup" description="builds rbnf files in ICU text format"> |
|
166 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile=".*xml" destFile=".*txt"> |
|
167 <run> |
|
168 <args> |
|
169 <arg name="--sourcedir" value="${env.CLDR_DIR}/common/rbnf" /> |
|
170 <arg name="--destdir" value="${env.ICU4C_DIR}/source/data/rbnf"/> |
|
171 <arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/rbnf"/> |
|
172 <arg name="--type" value="rbnf" /> |
|
173 <arg name="--makefile" value="rbnffiles.mk"/> |
|
174 </args> |
|
175 <!-- http://ant.apache.org/faq.html#xml-entity-include --> |
|
176 &icu-config; |
|
177 </run> |
|
178 </cldr-build> |
|
179 </target> |
|
180 <target name="supplementalData" depends="init,setup" description="builds supplementalData.txt from supplementalData.xml"> |
|
181 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="supplementalData.txt" noArgs="true"> |
|
182 <!-- launch the tool and generate the data after reading the config file --> |
|
183 <run> |
|
184 <args> |
|
185 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
186 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
187 <arg name="-t" value="supplementalData"/> |
|
188 </args> |
|
189 <remapper> |
|
190 <remap sourcePath="/CurrencyMap" targetDir="curr" /> |
|
191 <remap sourcePath="/CurrencyMeta" targetDir="curr" /> |
|
192 </remapper> |
|
193 </run> |
|
194 </cldr-build> |
|
195 </target> |
|
196 <target name="metadata" depends="init,setup" description="builds metadata.txt from supplementalMetadata.xml"> |
|
197 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="metadata.txt" noArgs="true"> |
|
198 <!-- launch the tool and generate the data after reading the config file --> |
|
199 <run> |
|
200 <args> |
|
201 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
202 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
203 <arg name="-t" value="metadata"/> |
|
204 </args> |
|
205 </run> |
|
206 </cldr-build> |
|
207 </target> |
|
208 <target name="metaZones" depends="init,setup" description="builds metaZones.txt from metaZones.xml"> |
|
209 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="metaZones.txt" noArgs="true"> |
|
210 <!-- launch the tool and generate the data after reading the config file --> |
|
211 <run> |
|
212 <args> |
|
213 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
214 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
215 <arg name="-t" value="metaZones"/> |
|
216 </args> |
|
217 </run> |
|
218 </cldr-build> |
|
219 </target> |
|
220 <target name="windowsZones" depends="init,setup" description="builds windowsZones.txt from windowsZones.xml"> |
|
221 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="windowsZones.txt" noArgs="true"> |
|
222 <!-- launch the tool and generate the data after reading the config file --> |
|
223 <run> |
|
224 <args> |
|
225 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
226 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
227 <arg name="-t" value="windowsZones"/> |
|
228 </args> |
|
229 </run> |
|
230 </cldr-build> |
|
231 </target> |
|
232 <target name="likelySubtags" depends="init,setup" description="builds likelySubtags.txt from likelySubtags.xml"> |
|
233 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="likelySubtags.txt" noArgs="true"> |
|
234 <!-- launch the tool and generate the data after reading the config file --> |
|
235 <run> |
|
236 <args> |
|
237 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
238 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
239 <arg name="-t" value="likelySubtags"/> |
|
240 </args> |
|
241 </run> |
|
242 </cldr-build> |
|
243 </target> |
|
244 <target name="plurals" depends="init,setup" description="builds plurals.txt from plurals.xml"> |
|
245 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="plurals.txt" noArgs="true"> |
|
246 <!-- launch the tool and generate the data after reading the config file --> |
|
247 <run> |
|
248 <args> |
|
249 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
250 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
251 <arg name="-t" value="plurals"/> |
|
252 </args> |
|
253 </run> |
|
254 </cldr-build> |
|
255 </target> |
|
256 <target name="numberingSystems" depends="init,setup" description="builds numberingSystems.txt from numberingSystems.xml"> |
|
257 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="numberingSystems.txt" noArgs="true"> |
|
258 <!-- launch the tool and generate the data after reading the config file --> |
|
259 <run> |
|
260 <args> |
|
261 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
262 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
263 <arg name="-t" value="numberingSystems"/> |
|
264 </args> |
|
265 </run> |
|
266 </cldr-build> |
|
267 </target> |
|
268 <target name="genderList" depends="init,setup" description="builds genderList.txt from genderList.xml"> |
|
269 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="genderList.txt" noArgs="true"> |
|
270 <!-- launch the tool and generate the data after reading the config file --> |
|
271 <run> |
|
272 <args> |
|
273 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
274 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
275 <arg name="-t" value="genderList"/> |
|
276 </args> |
|
277 </run> |
|
278 </cldr-build> |
|
279 </target> |
|
280 <target name="postalCodeData" depends="init,setup" description="builds postalCodeData.txt from postalCodeData.xml"> |
|
281 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="postalCodeData.txt" noArgs="true"> |
|
282 <!-- launch the tool and generate the data after reading the config file --> |
|
283 <run> |
|
284 <args> |
|
285 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
286 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
287 <arg name="-t" value="postalCodeData"/> |
|
288 </args> |
|
289 </run> |
|
290 </cldr-build> |
|
291 </target> |
|
292 <target name="dayPeriods" depends="init,setup" description="builds dayPeriods.txt from dayPeriods.xml"> |
|
293 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="dayPeriods.txt" noArgs="true"> |
|
294 <!-- launch the tool and generate the data after reading the config file --> |
|
295 <run> |
|
296 <args> |
|
297 <arg name="-s" value="${env.CLDR_DIR}/common/supplemental" /> |
|
298 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
299 <arg name="-t" value="dayPeriods"/> |
|
300 </args> |
|
301 </run> |
|
302 </cldr-build> |
|
303 </target> |
|
304 <target name="brkitr" depends="init,setup" description="builds break iterator files in ICU text format"> |
|
305 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile=".*xml" destFile=".*txt"> |
|
306 <run> |
|
307 <args> |
|
308 <arg name="--sourcedir" value="${env.ICU4C_DIR}/source/data/xml/brkitr"/> |
|
309 <arg name="--destdir" value="${env.ICU4C_DIR}/source/data/brkitr"/> |
|
310 <arg name="--type" value="brkitr" /> |
|
311 <arg name="--makefile" value="brkfiles.mk"/> |
|
312 </args> |
|
313 <!-- The entity include is not required for this target --> |
|
314 <!-- http://ant.apache.org/faq.html#xml-entity-include |
|
315 &icu-config; |
|
316 --> |
|
317 </run> |
|
318 </cldr-build> |
|
319 </target> |
|
320 |
|
321 <target name="keyTypeData" depends="init,setup" description="builds keyTypeData.txt and timezoneTypes.txt from bcp47/*.xml"> |
|
322 <cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" noArgs="true"> |
|
323 <run> |
|
324 <args> |
|
325 <arg name="-s" value="${env.CLDR_DIR}/common/bcp47" /> |
|
326 <arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/> |
|
327 <arg name="-t" value="keyTypeData"/> |
|
328 </args> |
|
329 </run> |
|
330 </cldr-build> |
|
331 </target> |
|
332 |
|
333 <target name="translit" depends="init,setup" description="builds collation files in ICU text format"> |
|
334 <cldr-build toolName="org.unicode.cldr.icu.ConvertTransforms" srcFile=".*xml" destFile=".*txt"> |
|
335 <run> |
|
336 <args> |
|
337 <arg name="-m" value="((?!.*(Canadian|Ethiopic).*).*)" /> |
|
338 <arg name="--sourcedir" value="${env.CLDR_DIR}/common/transforms" /> |
|
339 <arg name="--destdir" value="${env.ICU4C_DIR}/source/data/translit"/> |
|
340 <arg name="--commentSkip"/> |
|
341 </args> |
|
342 <!-- http://ant.apache.org/faq.html#xml-entity-include --> |
|
343 |
|
344 </run> |
|
345 </cldr-build> |
|
346 </target> |
|
347 <!-- we don't generate en.txt or el.txt - so don't change trnsfiles.mk for now. --> |
|
348 <!-- |
|
349 <target name="trnsfiles" depends="init, setup" description="builds trnsfiles.mk"> |
|
350 <cldr-build toolName="org.unicode.cldr.icu.ConvertTransforms" srcFile=".*xml" destFile="trnsfiles.mk" noArgs="true"> |
|
351 <run> |
|
352 <args> [ double hyphen not allowed in comments - transpose -" to fix below ] |
|
353 <arg name=-"-sourcedir" value="${env.CLDR_DIR}/common/transforms" /> |
|
354 <arg name=-"-destdir" value="${env.ICU4C_DIR}/source/data/translit"/> |
|
355 <arg name=-"-commentSkip"/> |
|
356 <arg name=-"-writeIndex"/> |
|
357 </args> |
|
358 </run> |
|
359 </cldr-build> |
|
360 </target> --> |
|
361 <target name="clean" depends="init, setup" description="deletes all txt files and mk files from coll and locales directories"> |
|
362 <delete> |
|
363 <fileset id="locales" dir="${env.ICU4C_DIR}/source/data/locales"> |
|
364 <include name="*.txt" /> |
|
365 </fileset> |
|
366 <fileset id="resfiles" dir="${env.ICU4C_DIR}/source/data/locales"> |
|
367 <include name="resfiles.mk" /> |
|
368 </fileset> |
|
369 <fileset id="locales_split" dir="${env.ICU4C_DIR}/source/data"> |
|
370 <include name="curr/*.txt" /> |
|
371 <include name="curr/resfiles.mk" /> |
|
372 <include name="lang/*.txt" /> |
|
373 <include name="lang/resfiles.mk" /> |
|
374 <include name="region/*.txt" /> |
|
375 <include name="region/resfiles.mk" /> |
|
376 <include name="zone/*.txt" /> |
|
377 <include name="zone/resfiles.mk" /> |
|
378 </fileset> |
|
379 <fileset id="collation" dir="${env.ICU4C_DIR}/source/data/coll"> |
|
380 <include name="*.txt" /> |
|
381 </fileset> |
|
382 <fileset id="colfiles" dir="${env.ICU4C_DIR}/source/data/coll"> |
|
383 <include name="colfiles.mk" /> |
|
384 </fileset> |
|
385 <fileset id="translit" dir="${env.ICU4C_DIR}/source/data/translit"> |
|
386 <include name="*_*.txt" /> |
|
387 <include name="root.txt" /> |
|
388 </fileset> |
|
389 <fileset id="brkitr" dir="${env.ICU4C_DIR}/source/data/brkitr"> |
|
390 <!-- brkitr directory contains bunch of txt files that are not produced by LDML2ICUConverter. |
|
391 So can't clean up everything. This needs to be updated when new files are added to xml/brkitr directory --> |
|
392 <include name="root.txt" /> |
|
393 <include name="el.txt" /> |
|
394 <include name="en.txt" /> |
|
395 <include name="en_US.txt" /> |
|
396 <include name="en_US_POSIX.txt" /> |
|
397 <include name="fi.txt" /> |
|
398 <include name="ja.txt" /> |
|
399 </fileset> |
|
400 <fileset id="brkfiles" dir="${env.ICU4C_DIR}/source/data/brkitr"> |
|
401 <include name="brkfiles.mk" /> |
|
402 </fileset> |
|
403 <fileset id="supplementalData" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
404 <include name="supplementalData.txt" /> |
|
405 </fileset> |
|
406 <fileset id="rbnf" dir="${env.ICU4C_DIR}/source/data/rbnf"> |
|
407 <include name="*.txt" /> |
|
408 </fileset> |
|
409 <fileset id="rbnffiles" dir="${env.ICU4C_DIR}/source/data/rbnf"> |
|
410 <include name="rbnffiles.mk" /> |
|
411 </fileset> |
|
412 <fileset id="metadata" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
413 <include name="metadata.txt" /> |
|
414 </fileset> |
|
415 <fileset id="metaZones" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
416 <include name="metaZones.txt" /> |
|
417 </fileset> |
|
418 <fileset id="windowsZones" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
419 <include name="windowsZones.txt" /> |
|
420 </fileset> |
|
421 <fileset id="likelySubtags" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
422 <include name="likelySubtags.txt" /> |
|
423 </fileset> |
|
424 <fileset id="plurals" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
425 <include name="plurals.txt" /> |
|
426 </fileset> |
|
427 <fileset id="numberingSystems" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
428 <include name="numberingSystems.txt" /> |
|
429 </fileset> |
|
430 <fileset id="keyTypeData" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
431 <include name="keyTypeData.txt" /> |
|
432 <include name="timezoneTypes.txt" /> |
|
433 </fileset> |
|
434 <fileset id="genderList" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
435 <include name="genderList.txt" /> |
|
436 </fileset> |
|
437 <fileset id="postalCodeData" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
438 <include name="postalCodeData.txt" /> |
|
439 </fileset> |
|
440 <fileset id="dayPeriods" dir="${env.ICU4C_DIR}/source/data/misc"> |
|
441 <include name="dayPeriods.txt" /> |
|
442 </fileset> |
|
443 </delete> |
|
444 </target> |
|
445 </project> |