Imported Upstream version 58.1
[platform/upstream/icu.git] / source / data / Makefile.in
1 ## Makefile.in for ICU data
2 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
3 ## License & terms of use: http://www.unicode.org/copyright.html
4 ## Copyright (c) 1999-2015, International Business Machines Corporation and
5 ## others. All Rights Reserved.
6
7 ## Source directory information
8 srcdir = @srcdir@
9 top_srcdir = @top_srcdir@
10
11 # So that you have $(top_builddir)/config.status
12 top_builddir = ..
13
14 ## All the flags and other definitions are included here.
15 include $(top_builddir)/icudefs.mk
16
17 ## Build directory information
18 # So that  $(top_builddir)/$(subdir) ~= "here"
19 subdir = data
20
21 #lib icu data for link
22 LIB_ICUDATA_NAME=$(LIBICU)$(DATA_STUBNAME)$(ICULIBSUFFIX)
23 LIB_STATIC_ICUDATA_NAME=$(LIBSICU)$(DATA_STUBNAME)$(ICULIBSUFFIX)
24
25 # Allow Windows to override these options
26 ifeq ($(PKGDATA_OPTS),)
27 PKGDATA_OPTS = -O $(top_builddir)/data/icupkg.inc
28 endif
29 ifeq ($(PKGDATA_VERSIONING),)
30 PKGDATA_VERSIONING = -r $(SO_TARGET_VERSION)
31 endif
32
33 # This allows all the data to be in one directory
34 ifeq ($(PKGDATA_MODE),dll)
35 ICUPKGDATA_OUTDIR = $(LIBDIR)
36 else
37 ifeq ($(PKGDATA_MODE),static)
38 ICUPKGDATA_OUTDIR = $(LIBDIR)
39 else
40 ICUPKGDATA_OUTDIR = $(OUTDIR)
41 endif
42 endif
43
44 CURDIR:=$(CURR_FULL_DIR)
45 # current directory should not be blank
46 ifeq ($(CURDIR),)
47 CURDIR=.
48 endif
49 ifeq ($(OS390BATCH),1)
50 PKGDATA = $(TOOLBINDIR)/pkgdata $(PKGDATA_OPTS) -z -q -c -s $(CURDIR)/out/build/$(ICUDATA_PLATFORM_NAME) -d $(ICUPKGDATA_OUTDIR)
51 else
52 PKGDATA = $(TOOLBINDIR)/pkgdata $(PKGDATA_OPTS) -q -c -s $(CURDIR)/out/build/$(ICUDATA_PLATFORM_NAME) -d $(ICUPKGDATA_OUTDIR)
53 endif
54 OS390_PDS_NAME = -z -L $(BATCH_STUB_TARGET)
55
56 ifeq ($(OS390_STUBDATA),1)
57 OS390PKG=package390
58 OS390INSTALL=install390
59
60 # Additional data for 390
61 OS390LIST=$(OUTTMPDIR)/icudata390.lst
62 OUTTMPDIR_390STUB=$(top_builddir)/data/out/tmp_390stub
63 endif
64
65 ifeq ($(OS390BATCH),1)
66 CPPFLAGS += -Wc,'ros,roc'
67 endif
68
69 # OBJDATADIR must be a short path (with ..'s) to the data.
70
71 ifeq ($(top_srcdir),..)
72 SRCDATADIR=.
73 else
74 SRCDATADIR=$(top_srcdir)/data
75 endif
76 ifeq ($(top_builddir),..)
77 OUTDIR=./out
78 else
79 OUTDIR=$(top_builddir)/data/out
80 endif
81
82 OUTTMPDIR=$(OUTDIR)/tmp
83 MAINBUILDDIR=$(OUTDIR)/build
84 BUILDDIR=$(MAINBUILDDIR)/$(ICUDATA_PLATFORM_NAME)
85 UNICODEDATADIR=$(SRCDATADIR)/unidata
86 LOCSRCDIR=$(SRCDATADIR)/locales
87 CURRSRCDIR=$(SRCDATADIR)/curr
88 CURRBLDDIR=$(BUILDDIR)/curr
89 LANGSRCDIR=$(SRCDATADIR)/lang
90 LANGBLDDIR=$(BUILDDIR)/lang
91 REGIONSRCDIR=$(SRCDATADIR)/region
92 REGIONBLDDIR=$(BUILDDIR)/region
93 ZONESRCDIR=$(SRCDATADIR)/zone
94 ZONEBLDDIR=$(BUILDDIR)/zone
95 UNITSRCDIR=$(SRCDATADIR)/unit
96 UNITBLDDIR=$(BUILDDIR)/unit
97 COLSRCDIR=$(SRCDATADIR)/coll
98 COLBLDDIR=$(BUILDDIR)/coll
99 RBNFSRCDIR=$(SRCDATADIR)/rbnf
100 RBNFBLDDIR=$(BUILDDIR)/rbnf
101 TRANSLITSRCDIR=$(SRCDATADIR)/translit
102 TRANSLITBLDDIR=$(BUILDDIR)/translit
103 MISCSRCDIR=$(SRCDATADIR)/misc
104 BRKSRCDIR=$(SRCDATADIR)/brkitr
105 BRKBLDDIR=$(BUILDDIR)/brkitr
106 DICTSRCDIR=$(BRKSRCDIR)/dictionaries
107 BRKRULESRCDIR=$(BRKSRCDIR)/rules
108 MISCSRCDIR=$(SRCDATADIR)/misc
109 UCMSRCDIR=$(SRCDATADIR)/mappings
110 SPREPSRCDIR=$(SRCDATADIR)/sprep
111 COMINCDIR=$(top_srcdir)/common/unicode
112 SRCLISTDEPS=Makefile $(srcdir)/Makefile.in
113 BUILD_DIRS=$(OUTDIR) $(MAINBUILDDIR) $(BUILDDIR) $(CURRBLDDIR) $(LANGBLDDIR) $(REGIONBLDDIR) $(ZONEBLDDIR) $(UNITBLDDIR) $(BRKBLDDIR) $(COLBLDDIR) $(RBNFBLDDIR) $(TRANSLITBLDDIR) $(OUTTMPDIR) $(OUTTMPDIR_390STUB) $(OUTTMPDIR)/$(CURR_TREE) $(OUTTMPDIR)/$(LANG_TREE) $(OUTTMPDIR)/$(REGION_TREE) $(OUTTMPDIR)/$(ZONE_TREE) $(OUTTMPDIR)/$(UNIT_TREE) $(OUTTMPDIR)/$(COLLATION_TREE) $(OUTTMPDIR)/$(RBNF_TREE) $(OUTTMPDIR)/$(TRANSLIT_TREE) $(OUTTMPDIR)/$(BREAK_TREE)
114
115 # relative lib links from pkgdata are the same as for tmp
116 TOOLDIR=$(top_builddir)/tools
117
118 ## List of phony targets
119 .PHONY : all all-local all-recursive install install-local install-files        \
120 install-recursive clean clean-local clean-recursive distclean           \
121 distclean-local distclean-recursive dist dist-local dist-recursive      \
122 check check-local check-recursive clean-resindex icudata.jar    \
123 check-exhaustive
124
125 ## Clear suffix list
126 .SUFFIXES :
127
128 ## List of standard targets
129 all: all-local
130 install: all-local install-local 
131 clean: clean-local
132 distclean : distclean-local
133 dist: 
134 check: all
135
136 check-exhaustive: check
137
138 -include Makefile.local
139
140
141 distclean-local: clean
142         $(RMV) Makefile
143
144 all-local: build-dir icupkg.inc build-local packagedata $(POST_DATA_BUILD) $(OS390PKG)
145
146 dist-local:
147
148 clean-map:
149         -test -z *.map || $(RMV) *.map
150
151 clean-local: cleanpackage cleanfiles clean-map
152         $(RMV) build-dir* build-local packagedata uni-core-data
153
154 cleanfiles:
155         test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
156
157 cleanpackage:
158         $(RMV) $(OUTDIR)
159         $(RMV) $(LIBDIR)/*$(LIB_ICUDATA_NAME)*.$(SO)* $(LIBDIR)/$(LIB_STATIC_ICUDATA_NAME).$(A)
160
161 check-local:
162
163 # Find out if we have a source archive.
164 # If we have that, then use that instead of building everything from scratch.
165 ICUDATA_SOURCE_ARCHIVE = $(wildcard $(srcdir)/in/$(ICUDATA_PLATFORM_NAME).dat)
166 ifeq ($(ICUDATA_SOURCE_ARCHIVE),)
167 ICUDATA_ARCHIVE = $(firstword $(wildcard $(srcdir)/in/$(ICUDATA_BASENAME_VERSION)*.dat))
168 # We don't have the data in the current endianess or charset.
169 # See if we can find data of any archive type,
170 # and convert it to the current type.
171 ifneq ($(ICUDATA_ARCHIVE),)
172 ICUDATA_SOURCE_ARCHIVE = $(OUTDIR)/$(ICUDATA_PLATFORM_NAME).dat
173 $(ICUDATA_SOURCE_ARCHIVE): $(ICUDATA_ARCHIVE) $(OUTDIR)
174         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(ICUDATA_ARCHIVE) $(ICUDATA_SOURCE_ARCHIVE)
175 endif
176 else
177 ifneq ($(ENABLE_STATIC),YES)
178 ifeq ($(PKGDATA_MODE),common)
179 # We have a source data common archive in the native endianess,
180 # and it's what we want to build. Try to not run any of ICU's tools.
181 ICUDATA_SOURCE_IS_NATIVE_TARGET=YES
182 endif
183 endif
184 endif
185
186 packagedata: icupkg.inc $(PKGDATA_LIST) build-local
187 ifneq ($(ENABLE_STATIC),)
188 ifeq ($(PKGDATA_MODE),dll)
189         $(PKGDATA_INVOKE) $(PKGDATA) -e $(ICUDATA_ENTRY_POINT) -T $(OUTTMPDIR) -p $(ICUDATA_NAME) $(PKGDATA_LIBSTATICNAME) -m static $(PKGDATA_VERSIONING) $(PKGDATA_LIST)
190 endif
191 endif
192 ifneq ($(ICUDATA_SOURCE_IS_NATIVE_TARGET),YES)
193         $(PKGDATA_INVOKE) $(PKGDATA) -e $(ICUDATA_ENTRY_POINT) -T $(OUTTMPDIR) -p $(ICUDATA_NAME) -m $(PKGDATA_MODE) $(PKGDATA_VERSIONING) $(PKGDATA_LIBNAME) $(PKGDATA_LIST)
194 else
195         $(INSTALL_DATA) $(ICUDATA_SOURCE_ARCHIVE) $(OUTDIR)
196 endif
197         echo timestamp > $@
198
199 ## Install ICU data.
200 install-local: $(PKGDATA_LIST) ./icupkg.inc packagedata $(OS390INSTALL)
201         $(MKINSTALLDIRS) $(TMPDATADIR) $(DESTDIR)$(ICUPKGDATA_DIR)
202 ifeq ($(PKGDATA_MODE),files)
203         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)
204         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(CURR_TREE)
205         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(LANG_TREE)
206         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(REGION_TREE)
207         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(ZONE_TREE)
208         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(UNIT_TREE)
209         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(BREAK_TREE)
210         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(COLLATION_TREE)
211         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(RBNF_TREE)
212         $(MKINSTALLDIRS) $(ICUPKGDATA_DIR)/$(ICUDATA_NAME)/$(TRANSLIT_TREE)
213 endif
214 ifneq ($(ENABLE_STATIC),)
215 ifeq ($(PKGDATA_MODE),dll)
216         $(PKGDATA_INVOKE) $(PKGDATA) -m static -e $(ICUDATA_ENTRY_POINT) -T $(OUTTMPDIR) -s $(BUILDDIR) -p $(ICUDATA_NAME) $(PKGDATA_LIBSTATICNAME) $(PKGDATA_LIST) -I $(ICUPKGDATA_INSTALL_LIBDIR)
217 endif
218 endif
219 ifneq ($(ICUDATA_SOURCE_IS_NATIVE_TARGET),YES)
220         $(PKGDATA_INVOKE) $(PKGDATA) -m $(PKGDATA_MODE) $(PKGDATA_VERSIONING) -e $(ICUDATA_ENTRY_POINT) -T $(OUTTMPDIR) -s $(BUILDDIR) -p $(ICUDATA_NAME) $(PKGDATA_LIBNAME) $(PKGDATA_LIST) -I $(ICUPKGDATA_INSTALL_DIR)
221 else
222         $(INSTALL_DATA) $(ICUDATA_SOURCE_ARCHIVE) $(DESTDIR)$(ICUPKGDATA_DIR)
223 endif
224
225
226 ####
227 ####
228 #### 390 support
229 install390: package390
230         $(MKINSTALLDIRS) $(TMPDATADIR) $(DESTDIR)$(libdir)
231         $(INVOKE) $(PKGDATA) -s $(BUILDDIR)$(STUB_SUFFIX) -T $(OUTTMPDIR_390STUB) -p $(ICUDATA_NAME)$(STUB_SUFFIX) $(PKGDATA_LIBNAME)$(STUB_SUFFIX) -e $(ICUDATA_ENTRY_POINT) $(OS390LIST) -m dll $(PKGDATA_VERSIONING) -I $(DESTDIR)$(ICUPKGDATA_DIR)
232 ifeq ($(PKGDATA_MODE),dll)
233         $(INSTALL-L) $(ICUPKGDATA_OUTDIR)/$(FINAL_IMPORT_LIB) $(DESTDIR)$(ICUPKGDATA_DIR)/$(FINAL_IMPORT_LIB)
234 endif
235
236 #### $(LIB_ICUDATA_NAME)$(STUB_SUFFIX) is the subset data for batch mode
237 package390: $(OUTTMPDIR)/icudata390.lst $(PKGDATA_LIST) ./icupkg.inc packagedata
238         ln -s $(ICUDATA_NAME) $(OUTDIR)/build/$(ICUDATA_NAME)$(STUB_SUFFIX)
239         $(INVOKE) $(PKGDATA) -s $(BUILDDIR)$(STUB_SUFFIX) -T $(OUTTMPDIR_390STUB) -p $(ICUDATA_NAME)$(STUB_SUFFIX) $(PKGDATA_LIBNAME)$(STUB_SUFFIX) -e $(ICUDATA_ENTRY_POINT) $(OS390LIST) -m dll $(PKGDATA_VERSIONING)
240         cp $(ICUPKGDATA_OUTDIR)/$(LIB_ICUDATA_NAME)$(STUB_SUFFIX).$(SO) $(top_builddir)/stubdata/$(LIB_ICUDATA_NAME)$(STUB_SUFFIX).$(SO)
241
242
243 ##### Define all the data files. the build rule that depends on them is below.
244 # X_FILES_SHORT = just the base names (for lists)
245 # X_FILES = full paths (for dependency)
246
247 ## DAT files - Misc. data files.
248 #  2005-may-05 Removed Unicode properties files (unorm.icu, uprops.icu, ucase.icu, ubidi.icu)
249 #  from data build. See Jitterbug 4497. (makedata.mak revision 1.117)
250 #  2010-dec Removed pnames.icu.
251 # These are now hardcoded in ICU4C and only loaded in ICU4J.
252 #
253 DAT_FILES_SHORT=unames.icu cnvalias.icu coll/ucadata.icu nfkc.nrm nfkc_cf.nrm uts46.nrm
254 DAT_FILES=$(DAT_FILES_SHORT:%=$(BUILDDIR)/%)
255
256 ## BRK files
257 BREAK_TREE=brkitr
258 -include $(BRKSRCDIR)/brkfiles.mk
259 -include $(BRKSRCDIR)/brklocal.mk
260 ALL_BRK_SOURCE= $(BRK_SOURCE) $(BRK_SOURCE_LOCAL)
261 BRK_FILES_SHORT=$(ALL_BRK_SOURCE:%.txt=$(BREAK_TREE)/%.brk)
262 BRK_FILES=$(ALL_BRK_SOURCE:%.txt=$(BRKBLDDIR)/%.brk)
263 ifdef BRK_DICT_SOURCE
264 ALL_DICT_SOURCE=$(BRK_DICT_SOURCE) $(BRK_DICT_SOURCE_LOCAL)
265 DICT_FILES_SHORT=$(ALL_DICT_SOURCE:%.txt=$(BREAK_TREE)/%.dict)
266 DICT_FILES=$(ALL_DICT_SOURCE:%.txt=$(BRKBLDDIR)/%.dict)
267 endif
268 ifdef BRK_RES_SOURCE
269 BRS_SRC= root.txt $(BRK_RES_SOURCE) $(BRK_RES_SOURCE_LOCAL)
270 BRS_SRC_FILES = $(BRS_SRC:%=$(BRKSRCDIR)/%)
271 INSTALLED_BRS_FILES = $(BRK_RES_SOURCE:%.txt=%)  $(BRK_RES_SOURCE_LOCAL:%.txt=%)
272 endif
273
274 ## Confusables (Spoofing) files
275 ALL_CFU_SOURCE=$(UNICODEDATADIR)/confusables.txt $(UNICODEDATADIR)/confusablesWholeScript.txt
276 CFU_FILES_SHORT=confusables.cfu
277 CFU_FILES=$(BUILDDIR)/$(CFU_FILES_SHORT)
278
279 ## UCM files
280 -include $(UCMSRCDIR)/ucmcore.mk
281 -include $(UCMSRCDIR)/ucmfiles.mk
282 -include $(UCMSRCDIR)/ucmebcdic.mk
283 -include $(UCMSRCDIR)/ucmlocal.mk
284 ALL_UCM_SOURCE=ibm-37_P100-1995.ucm ibm-1047_P100-1995.ucm $(UCM_SOURCE_CORE) $(UCM_SOURCE_FILES) $(UCM_SOURCE_EBCDIC) $(UCM_SOURCE_LOCAL)
285 UCM_FILES = $(ALL_UCM_SOURCE:%=$(SRCDATADIR)/%)
286 CNV_FILES = $(ALL_UCM_SOURCE:%.ucm=$(BUILDDIR)/%.cnv)
287 CNV_FILES_SHORT = $(ALL_UCM_SOURCE:%.ucm=%.cnv)
288 UCM_SOURCE_SPECIAL=$(UCM_SOURCE_EBCDIC_IGNORE_SISO) $(UCM_SOURCE_EBCDIC_IGNORE_SISO_LOCAL)
289 UCM_FILES_SPECIAL=$(UCM_SOURCE_SPECIAL:%=$(UCMSRCDIR)/%) 
290 CNV_FILES_SPECIAL=$(UCM_SOURCE_SPECIAL:%.ucm=$(BUILDDIR)/%.cnv) 
291 CNV_FILES_SHORT_SPECIAL=$(UCM_SOURCE_SPECIAL:%.ucm=%.cnv) 
292
293 ## RES files
294 -include $(LOCSRCDIR)/resfiles.mk
295 -include $(CURRSRCDIR)/resfiles.mk
296 -include $(LANGSRCDIR)/resfiles.mk
297 -include $(REGIONSRCDIR)/resfiles.mk
298 -include $(ZONESRCDIR)/resfiles.mk
299 -include $(UNITSRCDIR)/resfiles.mk
300 -include $(COLSRCDIR)/colfiles.mk
301 -include $(RBNFSRCDIR)/rbnffiles.mk
302 -include $(TRANSLITSRCDIR)/trnsfiles.mk
303 -include $(LOCSRCDIR)/reslocal.mk
304 -include $(CURRSRCDIR)/reslocal.mk
305 -include $(LANGSRCDIR)/reslocal.mk
306 -include $(REGIONSRCDIR)/reslocal.mk
307 -include $(ZONESRCDIR)/reslocal.mk
308 -include $(UNITSRCDIR)/reslocal.mk
309 -include $(COLSRCDIR)/collocal.mk
310 -include $(BRKSRCDIR)/brslocal.mk
311 -include $(RBNFSRCDIR)/rbnflocal.mk
312 -include $(TRANSLITSRCDIR)/trnslocal.mk
313 ifdef GENRB_SOURCE
314 RES_SRC= root.txt $(GENRB_SOURCE) $(GENRB_ALIAS_SOURCE) $(GENRB_SOURCE_LOCAL) $(GENRB_ALIAS_SOURCE_LOCAL)
315 RES_SRC_FILES = $(RES_SRC:%=$(LOCSRCDIR)/%)
316 INSTALLED_RB_FILES = $(GENRB_SOURCE:%.txt=%) $(GENRB_SOURCE_LOCAL:%.txt=%)
317 endif
318 ifdef CURR_SOURCE
319 CURR_SRC= root.txt supplementalData.txt $(CURR_SOURCE) $(CURR_ALIAS_SOURCE) $(CURR_SOURCE_LOCAL)
320 CURR_SRC_FILES = $(CURR_SRC:%=$(CURRSRCDIR)/%)
321 INSTALLED_CURR_FILES = $(CURR_SOURCE:%.txt=%)  $(CURR_SOURCE_LOCAL:%.txt=%)
322 endif
323 ifdef LANG_SOURCE
324 LANG_SRC= root.txt $(LANG_SOURCE) $(LANG_ALIAS_SOURCE) $(LANG_SOURCE_LOCAL)
325 LANG_SRC_FILES = $(LANG_SRC:%=$(LANGSRCDIR)/%)
326 INSTALLED_LANG_FILES = $(LANG_SOURCE:%.txt=%)  $(LANG_SOURCE_LOCAL:%.txt=%)
327 endif
328 ifdef REGION_SOURCE
329 REGION_SRC= root.txt $(REGION_SOURCE) $(REGION_ALIAS_SOURCE) $(REGION_SOURCE_LOCAL)
330 REGION_SRC_FILES = $(REGION_SRC:%=$(REGIONSRCDIR)/%)
331 INSTALLED_REGION_FILES = $(REGION_SOURCE:%.txt=%)  $(REGION_SOURCE_LOCAL:%.txt=%)
332 endif
333 ifdef ZONE_SOURCE
334 ZONE_SRC= root.txt $(ZONE_SOURCE) $(ZONE_ALIAS_SOURCE) $(ZONE_SOURCE_LOCAL) tzdbNames.txt
335 ZONE_SRC_FILES = $(ZONE_SRC:%=$(ZONESRCDIR)/%)
336 INSTALLED_ZONE_FILES = $(ZONE_SOURCE:%.txt=%)  $(ZONE_SOURCE_LOCAL:%.txt=%)
337 endif
338 ifdef UNIT_SOURCE
339 UNIT_SRC= root.txt $(UNIT_SOURCE) $(UNIT_ALIAS_SOURCE) $(UNIT_SOURCE_LOCAL)
340 UNIT_SRC_FILES = $(UNIT_SRC:%=$(UNITSRCDIR)/%)
341 INSTALLED_UNIT_FILES = $(UNIT_SOURCE:%.txt=%)  $(UNIT_SOURCE_LOCAL:%.txt=%)
342 endif
343 ifdef COLLATION_SOURCE
344 COL_SRC= root.txt $(COLLATION_SOURCE) $(COLLATION_ALIAS_SOURCE) $(COLLATION_SOURCE_LOCAL)
345 COL_SRC_FILES = $(COL_SRC:%=$(COLSRCDIR)/%)
346 INSTALLED_COL_FILES = $(COLLATION_SOURCE:%.txt=%)  $(COLLATION_SOURCE_LOCAL:%.txt=%)
347 endif
348 ifdef RBNF_SOURCE
349 RBNF_SRC= root.txt $(RBNF_SOURCE) $(RBNF_ALIAS_SOURCE) $(RBNF_SOURCE_LOCAL)
350 RBNF_SRC_FILES = $(RBNF_SRC:%=$(RBNFSRCDIR)/%)
351 INSTALLED_RBNF_FILES = $(RBNF_SOURCE:%.txt=%)  $(RBNF_SOURCE_LOCAL:%.txt=%)
352 endif
353 ifdef TRANSLIT_SOURCE
354 TRANSLIT_SRC= $(TRANSLIT_SOURCE) $(TRANSLIT_ALIAS_SOURCE) $(TRANSLIT_SOURCE_LOCAL)
355 TRANSLIT_SRC_FILES = $(TRANSLIT_SRC:%=$(TRANSLITSRCDIR)/%)
356 INSTALLED_TRANSLIT_FILES = $(TRANSLIT_SOURCE:%.txt=%)  $(TRANSLIT_SOURCE_LOCAL:%.txt=%)
357 endif
358 GENRBOPTS=-k
359
360 ## MISC files
361 -include $(MISCSRCDIR)/miscfiles.mk
362 -include $(MISCSRCDIR)/misclocal.mk
363 MSC_SOURCE= $(MISC_SOURCE) $(MISC_SOURCE_LOCAL)
364 MSC_SRC_FILES=$(MSC_SOURCE:%=$(MISCSRCDIR)/%)
365
366 ifeq ($(ENABLE_SO_VERSION_DATA),1)
367 ifeq ($(PKGDATA_MODE),dll)
368 SO_VERSION_DATA = $(OUTTMPDIR)/icudata.res
369 $(SO_VERSION_DATA) : $(MISCSRCDIR)/icudata.rc
370 ifeq ($(MSYS_RC_MODE),1)
371         rc.exe -i$(srcdir)/../common -i$(top_builddir)/common -fo$@ $(CPPFLAGS) $<
372 else
373         rc.exe /i$(srcdir)/../common /i$(top_builddir)/common /fo$@ $(CPPFLAGS) $(SOURCE_FILE)
374 endif
375 endif
376 endif
377
378 INDEX_NAME=res_index
379 INDEX_FILE=$(OUTTMPDIR)/$(INDEX_NAME).txt
380
381 ALL_RES_SRC= $(RES_SRC) $(TRNS_SOURCE) $(MSC_SOURCE)
382 RES_FILES = $(ALL_RES_SRC:%.txt=$(BUILDDIR)/%.res) $(BUILDDIR)/$(INDEX_NAME).res $(BUILDDIR)/pool.res
383 RES_FILES_SHORT = $(ALL_RES_SRC:%.txt=%.res) $(INDEX_NAME).res pool.res
384 PKGDATA_LIST = $(OUTTMPDIR)/icudata.lst
385
386 CURR_TREE=curr
387 CURR_INDEX_FILE=$(OUTTMPDIR)/$(CURR_TREE)/$(INDEX_NAME).txt
388 CURR_FILES = $(CURR_SRC:%.txt=$(CURRBLDDIR)/%.res) $(CURRBLDDIR)/$(INDEX_NAME).res $(CURRBLDDIR)/pool.res
389 CURR_FILES_SHORT = $(CURR_SRC:%.txt=$(CURR_TREE)/%.res) $(CURR_TREE)/$(INDEX_NAME).res $(CURR_TREE)/pool.res
390
391 LANG_TREE=lang
392 LANG_INDEX_FILE=$(OUTTMPDIR)/$(LANG_TREE)/$(INDEX_NAME).txt
393 LANG_FILES = $(LANG_SRC:%.txt=$(LANGBLDDIR)/%.res) $(LANGBLDDIR)/$(INDEX_NAME).res $(LANGBLDDIR)/pool.res
394 LANG_FILES_SHORT = $(LANG_SRC:%.txt=$(LANG_TREE)/%.res) $(LANG_TREE)/$(INDEX_NAME).res $(LANG_TREE)/pool.res
395
396 REGION_TREE=region
397 REGION_INDEX_FILE=$(OUTTMPDIR)/$(REGION_TREE)/$(INDEX_NAME).txt
398 REGION_FILES = $(REGION_SRC:%.txt=$(REGIONBLDDIR)/%.res) $(REGIONBLDDIR)/$(INDEX_NAME).res $(REGIONBLDDIR)/pool.res
399 REGION_FILES_SHORT = $(REGION_SRC:%.txt=$(REGION_TREE)/%.res) $(REGION_TREE)/$(INDEX_NAME).res $(REGION_TREE)/pool.res
400
401 ZONE_TREE=zone
402 ZONE_INDEX_FILE=$(OUTTMPDIR)/$(ZONE_TREE)/$(INDEX_NAME).txt
403 ZONE_FILES = $(ZONE_SRC:%.txt=$(ZONEBLDDIR)/%.res) $(ZONEBLDDIR)/$(INDEX_NAME).res $(ZONEBLDDIR)/pool.res
404 ZONE_FILES_SHORT = $(ZONE_SRC:%.txt=$(ZONE_TREE)/%.res) $(ZONE_TREE)/$(INDEX_NAME).res $(ZONE_TREE)/pool.res
405
406 UNIT_TREE=unit
407 UNIT_INDEX_FILE=$(OUTTMPDIR)/$(UNIT_TREE)/$(INDEX_NAME).txt
408 UNIT_FILES = $(UNIT_SRC:%.txt=$(UNITBLDDIR)/%.res) $(UNITBLDDIR)/$(INDEX_NAME).res $(UNITBLDDIR)/pool.res
409 UNIT_FILES_SHORT = $(UNIT_SRC:%.txt=$(UNIT_TREE)/%.res) $(UNIT_TREE)/$(INDEX_NAME).res $(UNIT_TREE)/pool.res
410
411 COLLATION_TREE=coll
412 COLLATION_INDEX_FILE=$(OUTTMPDIR)/$(COLLATION_TREE)/$(INDEX_NAME).txt
413 COLLATION_INDEX_RES=$(COLBLDDIR)/$(INDEX_NAME).res
414 COLLATION_INDEX_RES_SHORT=$(COLLATION_TREE)/$(INDEX_NAME).res
415 COLLATION_FILES = $(COL_SRC:%.txt=$(COLBLDDIR)/%.res) $(COLLATION_INDEX_RES)
416 COLLATION_FILES_SHORT = $(COL_SRC:%.txt=$(COLLATION_TREE)/%.res)
417
418 BRK_RES_INDEX_FILE=$(OUTTMPDIR)/$(BREAK_TREE)/$(INDEX_NAME).txt
419 BRK_RES_INDEX_RES=$(BRKBLDDIR)/$(INDEX_NAME).res
420 BRK_RES_INDEX_RES_SHORT=$(BREAK_TREE)/$(INDEX_NAME).res
421 BRK_RES_FILES = $(BRS_SRC:%.txt=$(BRKBLDDIR)/%.res) $(BRK_RES_INDEX_RES)
422 BRK_RES_FILES_SHORT = $(BRS_SRC:%.txt=$(BREAK_TREE)/%.res)
423
424 RBNF_TREE=rbnf
425 RBNF_INDEX_FILE=$(OUTTMPDIR)/$(RBNF_TREE)/$(INDEX_NAME).txt
426 RBNF_INDEX_RES=$(RBNFBLDDIR)/$(INDEX_NAME).res
427 RBNF_INDEX_RES_SHORT=$(RBNF_TREE)/$(INDEX_NAME).res
428 RBNF_FILES = $(RBNF_SRC:%.txt=$(RBNFBLDDIR)/%.res) $(RBNF_INDEX_RES)
429 RBNF_FILES_SHORT = $(RBNF_SRC:%.txt=$(RBNF_TREE)/%.res)
430
431 TRANSLIT_TREE=translit
432 #TRANSLIT_INDEX_FILE=$(OUTTMPDIR)/$(TRANSLIT_TREE)/$(INDEX_NAME).txt
433 #TRANSLIT_INDEX_RES=$(TRANSLITBLDDIR)/$(INDEX_NAME).res
434 #TRANSLIT_INDEX_RES_SHORT=$(TRANSLIT_TREE)/$(INDEX_NAME).res
435 TRANSLIT_FILES = $(TRANSLIT_SRC:%.txt=$(TRANSLITBLDDIR)/%.res)
436 TRANSLIT_FILES_SHORT = $(TRANSLIT_SRC:%.txt=$(TRANSLIT_TREE)/%.res)
437
438 ## SPP files
439 -include $(SPREPSRCDIR)/sprepfiles.mk
440 -include $(SPREPSRCDIR)/spreplocal.mk
441 ALL_SPREP_SOURCE=$(SPREP_SOURCE) $(SPREP_SOURCE_LOCAL)
442 SPREP_FILES = $(ALL_SPREP_SOURCE:%.txt=$(BUILDDIR)/%.spp)
443 SPREP_FILES_SHORT = $(ALL_SPREP_SOURCE:%.txt=%.spp)
444
445 ## All generated files
446 ALL_FILES = $(DAT_FILES) $(CNV_FILES) $(CNV_FILES_SPECIAL) $(BRK_FILES) $(DICT_FILES) $(RES_FILES) $(INDEX_RES_FILE) $(CURR_FILES) $(LANG_FILES) $(REGION_FILES) $(ZONE_FILES) $(UNIT_FILES) $(COLLATION_FILES) $(BRK_RES_FILES) $(RBNF_FILES) $(TRANSLIT_FILES) $(SPREP_FILES) $(CFU_FILES)
447 ALL_INDEX_SRC_FILES = $(PKGDATA_LIST) $(INDEX_FILE) $(CURR_INDEX_FILE) $(LANG_INDEX_FILE) $(REGION_INDEX_FILE) $(ZONE_INDEX_FILE) $(UNIT_INDEX_FILE) $(COLLATION_INDEX_FILE) $(BRK_RES_INDEX_FILE) $(RBNF_INDEX_FILE)
448 # a list to use in the .lst files (package-relative)
449 COLL_FILES_LIST=$(COLLATION_FILES_SHORT) $(COLLATION_INDEX_RES_SHORT)
450 BRK_FILES_LIST=$(BRK_FILES_SHORT) $(BRK_RES_FILES_SHORT) $(BRK_RES_INDEX_RES_SHORT) $(DICT_FILES_SHORT)
451 LOCALE_FILES_LIST= $(RES_FILES_SHORT) $(LANG_FILES_SHORT) $(REGION_FILES_SHORT) $(ZONE_FILES_SHORT) $(UNIT_FILES_SHORT)
452 MISC_FILES_LIST=$(DAT_FILES_SHORT) $(CNV_FILES_SHORT) $(CNV_FILES_SHORT_SPECIAL) $(CURR_FILES_SHORT) $(RBNF_FILES_SHORT) $(RBNF_INDEX_RES_SHORT) $(TRANSLIT_FILES_SHORT) $(SPREP_FILES_SHORT) $(CFU_FILES_SHORT)
453 UNI_CORE_DATA=pnames.icu uprops.icu ucase.icu ubidi.icu nfc.nrm
454 UNI_CORE_TARGET_DATA=$(UNI_CORE_DATA:%=$(BUILDDIR)/%)
455
456 ifneq ($(INCLUDE_UNI_CORE_DATA),)
457 MISC_FILES_LIST+=$(UNI_CORE_DATA)
458 build-local: uni-core-data
459         echo timestamp > $@
460 endif
461
462 #####################################################
463 # General data build rules
464
465 ## Files to remove for 'make clean'
466 CLEANFILES = *~ icupkg.inc *.x
467
468 ifeq ($(ICUDATA_SOURCE_ARCHIVE),)
469 build-local: build-dir $(SO_VERSION_DATA) $(ALL_FILES) $(PKGDATA_LIST) $(OS390LIST)
470         echo timestamp > $@
471 $(PKGDATA_LIST): $(SRCLISTDEPS)
472         @echo "generating $@ (list of data files)"
473         @-$(RMV) $@
474         @for file in $(COLL_FILES_LIST); do \
475           echo $$file >> $@; \
476         done;
477         @for file in $(BRK_FILES_LIST); do \
478           echo $$file >> $@; \
479         done;
480         @for file in $(LOCALE_FILES_LIST); do \
481           echo $$file >> $@; \
482         done;
483         @for file in $(MISC_FILES_LIST); do \
484           echo $$file >> $@; \
485         done;
486 else
487 build-local: build-dir $(SO_VERSION_DATA) $(PKGDATA_LIST) $(OS390LIST)
488         echo timestamp > $@
489 $(PKGDATA_LIST): $(SRCLISTDEPS) $(ICUDATA_SOURCE_ARCHIVE)
490 ifneq ($(ICUDATA_SOURCE_IS_NATIVE_TARGET),YES)
491         @echo "Unpacking $(ICUDATA_SOURCE_ARCHIVE) and generating $@ (list of data files)"
492         @-$(RMV) $@
493         $(INVOKE) $(TOOLBINDIR)/icupkg -d $(BUILDDIR) --list -x \* $(ICUDATA_SOURCE_ARCHIVE) -o $@
494 else
495         @echo "$@" > $@
496 endif
497 endif
498
499
500 $(BUILD_DIRS): build-dir
501
502 build-dir:
503         @-$(RMV) $@
504         echo timestamp > $@.tmp
505         @list='$(BUILD_DIRS)'; \
506         for dir in $$list; do \
507           if ! test -d $$dir; then \
508             echo $(MKINSTALLDIRS) $(BUILD_DIRS); \
509             $(MKINSTALLDIRS) $(BUILD_DIRS); \
510           fi; \
511         done
512         mv $@.tmp $@
513
514 # The | is an order-only prerequisite. This helps when the -j option is used,
515 # and we don't want the files to be built before the directories are built.
516 ifneq ($(filter order-only,$(.FEATURES)),)
517 $(ALL_FILES) $(ALL_INDEX_SRC_FILES): | build-dir
518 endif
519
520 # Now, sections for building each kind of data.
521
522 ####################################################    DAT
523 # DAT FILES
524
525 # cnvalias.icu
526 $(BUILDDIR)/cnvalias.icu: $(UCMSRCDIR)/convrtrs.txt $(TOOLBINDIR)/gencnval$(TOOLEXEEXT)
527         $(INVOKE) $(TOOLBINDIR)/gencnval -d $(BUILDDIR) $(UCMSRCDIR)/convrtrs.txt
528
529 # Targets for prebuilt Unicode data
530 $(BUILDDIR)/%.icu: $(SRCDATADIR)/in/%.icu
531         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $< $@
532
533 $(BUILDDIR)/%.nrm: $(SRCDATADIR)/in/%.nrm
534         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $< $@
535
536 $(BUILDDIR)/coll/ucadata.icu: $(SRCDATADIR)/in/coll/ucadata-unihan.icu
537         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $< $@
538
539 ####################################################    SPP
540 # SPP FILES
541
542 $(BUILDDIR)/%.spp: $(SPREPSRCDIR)/%.txt $(TOOLBINDIR)/gensprep$(TOOLEXEEXT) $(BUILDDIR)/unames.icu
543         $(INVOKE) $(TOOLBINDIR)/gensprep -d $(BUILDDIR) -i $(BUILDDIR) -s $(SPREPSRCDIR) -b $(@F:%.spp=%) -m $(UNICODEDATADIR) -u 3.2.0 $(<F)
544
545 ####################################################    BRK
546 # BRK FILES
547
548 $(BRKBLDDIR)/%.brk: $(BRKRULESRCDIR)/%.txt $(TOOLBINDIR)/genbrk$(TOOLEXEEXT) $(DAT_FILES)
549         $(INVOKE) $(TOOLBINDIR)/genbrk -c -i $(BUILDDIR) -r $< -o $@
550
551 ####################################################    DICT
552 # DICT FILES
553
554 # .dict file generated regardless of whether dictionary file exists
555
556 $(BRKBLDDIR)/%.dict: $(TOOLBINDIR)/gendict$(TOOLEXEEXT) $(DAT_FILES)
557         $(INVOKE) $(TOOLBINDIR)/gendict --uchars -c -i $(BUILDDIR) $(DICTSRCDIR)/$(*F).txt $@
558
559 $(BRKBLDDIR)/thaidict.dict: $(TOOLBINDIR)/gendict$(TOOLEXEEXT) $(DAT_FILES)
560         $(INVOKE) $(TOOLBINDIR)/gendict --bytes --transform offset-0x0e00 -c -i $(BUILDDIR) $(DICTSRCDIR)/thaidict.txt $(BRKBLDDIR)/thaidict.dict
561
562 $(BRKBLDDIR)/laodict.dict: $(TOOLBINDIR)/gendict$(TOOLEXEEXT) $(DAT_FILES)
563         $(INVOKE) $(TOOLBINDIR)/gendict --bytes --transform offset-0x0e80 -c -i $(BUILDDIR) $(DICTSRCDIR)/laodict.txt $(BRKBLDDIR)/laodict.dict
564
565 $(BRKBLDDIR)/burmesedict.dict: $(TOOLBINDIR)/gendict$(TOOLEXEEXT) $(DAT_FILES)
566         $(INVOKE) $(TOOLBINDIR)/gendict --bytes --transform offset-0x1000 -c -i $(BUILDDIR) $(DICTSRCDIR)/burmesedict.txt $(BRKBLDDIR)/burmesedict.dict
567
568 # TODO: figure out why combining characters are here?
569 $(BRKBLDDIR)/khmerdict.dict: $(TOOLBINDIR)/gendict$(TOOLEXEEXT) $(DAT_FILES)
570         $(INVOKE) $(TOOLBINDIR)/gendict --bytes --transform offset-0x1780 -c -i $(BUILDDIR) $(DICTSRCDIR)/khmerdict.txt $(BRKBLDDIR)/khmerdict.dict
571
572 ####################################################    CFU
573 # CFU FILES
574 #    Note: gencfu requires two input files to produce a single output file.
575 #          There will be exactly one target file and two source files.
576 #          The $(word n, ...) selects the nth word from the following stuff.
577 #          There must be a nicer way to do this.
578
579 $(CFU_FILES): $(ALL_CFU_SOURCE) $(TOOLBINDIR)/gencfu$(TOOLEXEEXT) $(DAT_FILES)
580         $(INVOKE) echo ALL_CFU_SOURCE: $(ALL_CFU_SOURCE)
581         $(INVOKE) echo CFU_FILES: $(CFU_FILES)
582         $(INVOKE) echo CFU_FILES_SHORT: $(CFU_FILES_SHORT)
583         $(INVOKE) $(TOOLBINDIR)/gencfu -c -i $(BUILDDIR) -r $(word 1,$(ALL_CFU_SOURCE)) -w $(word 2,$(ALL_CFU_SOURCE)) -o $@
584
585
586 ####################################################    CNV
587 # CNV FILES
588 $(CNV_FILES_SPECIAL) : $(UCM_FILES_SPECIAL) $(TOOLBINDIR)/makeconv$(TOOLEXEEXT) 
589         $(INVOKE) $(TOOLBINDIR)/makeconv --ignore-siso-check -c -d $(BUILDDIR) $(UCMSRCDIR)/$(@F:%.cnv=%.ucm) 
590 $(BUILDDIR)/%.cnv: $(UCMSRCDIR)/%.ucm $(TOOLBINDIR)/makeconv$(TOOLEXEEXT)
591         $(INVOKE) $(TOOLBINDIR)/makeconv -c -d $(BUILDDIR) $(UCMSRCDIR)/$(<F)
592
593 ####################################################    RES
594 # RES FILES
595
596 ### curr res
597 $(CURRBLDDIR)/%.res: $(CURRSRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
598         $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(CURRSRCDIR) -d $(CURRBLDDIR) $(<F)
599
600 # copy the curr/pool.res file from the source folder to the build output folder
601 # and swap it to native endianness
602 $(CURRBLDDIR)/pool.res: $(CURRSRCDIR)/pool.res
603         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(CURRSRCDIR)/pool.res $(CURRBLDDIR)/pool.res
604
605 $(CURRBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(CURR_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
606         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(CURR_TREE) -d $(CURRBLDDIR) $(INDEX_NAME).txt
607
608 $(CURR_INDEX_FILE): $(SRCLISTDEPS)
609         @echo "generating $@ (list of installed currency name locales)"; \
610         $(RMV) $@; \
611         echo "// Warning this file is automatically generated" > $@; \
612         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
613         echo "    InstalledLocales {" >> $@; \
614         for file in $(INSTALLED_CURR_FILES); do \
615           echo "        $$file {\"\"}" >> $@; \
616         done; \
617         echo "    }" >> $@; \
618         echo "}" >> $@;
619
620 ### lang res
621 $(LANGBLDDIR)/%.res: $(LANGSRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
622         $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(LANGSRCDIR) -d $(LANGBLDDIR) $(<F)
623
624 # copy the lang/pool.res file from the source folder to the build output folder
625 # and swap it to native endianness
626 $(LANGBLDDIR)/pool.res: $(LANGSRCDIR)/pool.res
627         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(LANGSRCDIR)/pool.res $(LANGBLDDIR)/pool.res
628
629 $(LANGBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(LANG_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
630         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(LANG_TREE) -d $(LANGBLDDIR) $(INDEX_NAME).txt
631
632 $(LANG_INDEX_FILE): $(SRCLISTDEPS)
633         @echo "generating $@ (list of installed language name locales)"; \
634         $(RMV) $@; \
635         echo "// Warning this file is automatically generated" > $@; \
636         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
637         echo "    InstalledLocales {" >> $@; \
638         for file in $(INSTALLED_LANG_FILES); do \
639           echo "        $$file {\"\"}" >> $@; \
640         done; \
641         echo "    }" >> $@; \
642         echo "}" >> $@;
643
644 ### region res
645 $(REGIONBLDDIR)/%.res: $(REGIONSRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
646         $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(REGIONSRCDIR) -d $(REGIONBLDDIR) $(<F)
647
648 # copy the region/pool.res file from the source folder to the build output folder
649 # and swap it to native endianness
650 $(REGIONBLDDIR)/pool.res: $(REGIONSRCDIR)/pool.res
651         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(REGIONSRCDIR)/pool.res $(REGIONBLDDIR)/pool.res
652
653 $(REGIONBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(REGION_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
654         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(REGION_TREE) -d $(REGIONBLDDIR) $(INDEX_NAME).txt
655
656 $(REGION_INDEX_FILE): $(SRCLISTDEPS)
657         @echo "generating $@ (list of installed region name locales)"; \
658         $(RMV) $@; \
659         echo "// Warning this file is automatically generated" > $@; \
660         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
661         echo "    InstalledLocales {" >> $@; \
662         for file in $(INSTALLED_REGION_FILES); do \
663           echo "        $$file {\"\"}" >> $@; \
664         done; \
665         echo "    }" >> $@; \
666         echo "}" >> $@;
667
668 ### zone res
669 $(ZONEBLDDIR)/%.res: $(ZONESRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
670         $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(ZONESRCDIR) -d $(ZONEBLDDIR) $(<F)
671
672 # copy the zone/pool.res file from the source folder to the build output folder
673 # and swap it to native endianness
674 $(ZONEBLDDIR)/pool.res: $(ZONESRCDIR)/pool.res
675         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(ZONESRCDIR)/pool.res $(ZONEBLDDIR)/pool.res
676
677 $(ZONEBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(ZONE_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
678         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(ZONE_TREE) -d $(ZONEBLDDIR) $(INDEX_NAME).txt
679
680 $(ZONE_INDEX_FILE): $(SRCLISTDEPS)
681         @echo "generating $@ (list of installed time zone name locales)"; \
682         $(RMV) $@; \
683         echo "// Warning this file is automatically generated" > $@; \
684         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
685         echo "    InstalledLocales {" >> $@; \
686         for file in $(INSTALLED_ZONE_FILES); do \
687           echo "        $$file {\"\"}" >> $@; \
688         done; \
689         echo "    }" >> $@; \
690         echo "}" >> $@;
691
692 ### unit res
693 $(UNITBLDDIR)/%.res: $(UNITSRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
694         $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(UNITSRCDIR) -d $(UNITBLDDIR) $(<F)
695
696 # copy the unit/pool.res file from the source folder to the build output folder
697 # and swap it to native endianness
698 $(UNITBLDDIR)/pool.res: $(UNITSRCDIR)/pool.res
699         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(UNITSRCDIR)/pool.res $(UNITBLDDIR)/pool.res
700
701 $(UNITBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(UNIT_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
702         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(UNIT_TREE) -d $(UNITBLDDIR) $(INDEX_NAME).txt
703
704 $(UNIT_INDEX_FILE): $(SRCLISTDEPS)
705         @echo "generating $@ (list of installed time zone name locales)"; \
706         $(RMV) $@; \
707         echo "// Warning this file is automatically generated" > $@; \
708         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
709         echo "    InstalledLocales {" >> $@; \
710         for file in $(INSTALLED_UNIT_FILES); do \
711           echo "        $$file {\"\"}" >> $@; \
712         done; \
713         echo "    }" >> $@; \
714         echo "}" >> $@;
715
716 ### collation res
717 $(COLBLDDIR)/%.res: $(COLSRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
718         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(COLSRCDIR) -d $(COLBLDDIR) $(<F)
719
720 $(COLBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(COLLATION_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
721         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(COLLATION_TREE) -d $(COLBLDDIR) $(INDEX_NAME).txt
722
723 $(COLLATION_INDEX_FILE): $(SRCLISTDEPS)
724         @echo "generating $@ (list of installed collation locales)"; \
725         $(RMV) $@; \
726         echo "// Warning this file is automatically generated" > $@; \
727         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
728         echo "    InstalledLocales {" >> $@; \
729         for file in $(INSTALLED_COL_FILES); do \
730           echo "        $$file {\"\"}" >> $@; \
731         done; \
732         echo "    }" >> $@; \
733         echo "}" >> $@;
734
735 ### brk res
736 $(BRKBLDDIR)/%.res: $(BRKSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(BRK_FILES) $(DICT_FILES) $(DAT_FILES)
737         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(BRKSRCDIR) -d $(BRKBLDDIR) $(<F)
738
739 $(BRKBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(BREAK_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
740         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(BREAK_TREE) -d $(BRKBLDDIR) $(INDEX_NAME).txt
741
742 $(BRK_RES_INDEX_FILE): $(SRCLISTDEPS)
743         @echo "generating $@ (list of installed break locales)"; \
744         $(RMV) $@; \
745         echo "// Warning this file is automatically generated" > $@; \
746         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
747         echo "    InstalledLocales {" >> $@; \
748         for file in $(INSTALLED_BRS_FILES); do \
749           echo "        $$file {\"\"}" >> $@; \
750         done; \
751         echo "    }" >> $@; \
752         echo "}" >> $@;
753
754 ### RBNF res
755 $(RBNFBLDDIR)/%.res: $(RBNFSRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
756         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(RBNFSRCDIR) -d $(RBNFBLDDIR) $(<F)
757
758 $(RBNFBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(RBNF_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
759         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(RBNF_TREE) -d $(RBNFBLDDIR) $(INDEX_NAME).txt
760
761 $(RBNF_INDEX_FILE): $(SRCLISTDEPS)
762         @echo "generating $@ (list of installed RBNF locales)"; \
763         $(RMV) $@; \
764         echo "// Warning this file is automatically generated" > $@; \
765         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
766         echo "    InstalledLocales {" >> $@; \
767         for file in $(INSTALLED_RBNF_FILES); do \
768           echo "        $$file {\"\"}" >> $@; \
769         done; \
770         echo "    }" >> $@; \
771         echo "}" >> $@;
772
773 ### TRANSLIT res
774 $(TRANSLITBLDDIR)/%.res: $(TRANSLITSRCDIR)/%.txt  $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
775         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(TRANSLITSRCDIR) -d $(TRANSLITBLDDIR) $(<F)
776
777 ### normal (locale) res
778 all-RES:  $(RES_FILES)
779
780 $(BUILDDIR)/%.res: $(LOCSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES)
781         $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(LOCSRCDIR) -d $(BUILDDIR) $(<F)
782
783 # copy the locales/pool.res file from the source folder to the build output folder
784 # and swap it to native endianness
785 $(BUILDDIR)/pool.res: $(LOCSRCDIR)/pool.res
786         $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(LOCSRCDIR)/pool.res $(BUILDDIR)/pool.res
787
788 # if the tzcode directory contains a new tzdata*.tar.gz file, use it for zoneinfo
789 ifeq ($(TZDATA),)
790 TZDATA = $(firstword $(wildcard $(top_builddir)/tools/tzcode/tzdata*.tar.gz) $(wildcard $(top_srcdir)/tools/tzcode/tzdata*.tar.gz))
791 endif
792
793 ifneq ($(TZDATA),)
794
795 TZCODE_DIR=$(top_builddir)/tools/tzcode
796 ZONEINFO=$(TZCODE_DIR)/zoneinfo64.txt
797
798 # Override the normal genrb for zoneinfo to always pull from
799 # icu/source/tools/tzcode/zoneinfo64.txt
800 $(BUILDDIR)/zoneinfo64.res: $(ZONEINFO) $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
801         @echo Note: $(MISCSRCDIR)/zoneinfo.txt is IGNORED because $(TZDATA) is present.
802         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -q -i $(BUILDDIR) -d $(BUILDDIR) $(ZONEINFO)
803
804 # Create the tzcode tool and zoneinfo as needed.
805 $(ZONEINFO): $(TZDATA)
806         @echo "$(MAKE)[$(MAKELEVEL)]: Making \`$(ZONEINFO)' in \`$(TZCODE_DIR)'"; \
807         (cd $(TZCODE_DIR) && $(MAKE)) || exit; \
808
809 # end of zoneinfo-generation
810 endif
811
812 # zoneinfo has some issues. Ignore some warnings with -q
813 $(BUILDDIR)/%.res: $(MISCSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
814         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -q -i $(BUILDDIR) -s $(MISCSRCDIR) -d $(BUILDDIR) $(<F)
815
816
817
818 $(INDEX_FILE): $(SRCLISTDEPS)
819         @echo "generating $@ (list of installed locales)"; \
820         $(RMV) $@; \
821         echo "// Warning this file is automatically generated" > $@; \
822         echo "$(INDEX_NAME):table(nofallback) {" >> $@; \
823         echo "    CLDRVersion { \"$(GENRB_CLDR_VERSION)\" }" >> $@; \
824         echo "    InstalledLocales {" >> $@; \
825         for file in $(INSTALLED_RB_FILES); do \
826           echo "        $$file {\"\"}" >> $@; \
827         done; \
828         echo "    }" >> $@; \
829         echo "}" >> $@;
830
831 clean-resindex:
832         -$(RMV) $(BUILDDIR)/$(INDEX_NAME).txt $(PKGDATA_LIST)
833
834 $(BUILDDIR)/$(INDEX_NAME).res: $(INDEX_FILE) $(TOOLBINDIR)/genrb$(TOOLEXEEXT)
835         $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -d $(BUILDDIR) $(INDEX_FILE)
836
837 # The core Unicode properties files (pnames.icu, uprops.icu, ucase.icu, ubidi.icu)
838 # are hardcoded in the common DLL and therefore not included in the data package any more.
839 # They are not built by default but need to be built for ICU4J data and for getting the .c source files
840 # when updating the Unicode data.
841 uni-core-data: build-dir $(UNI_CORE_TARGET_DATA)
842         @echo Unicode .icu files built to $(BUILDDIR)
843         echo timestamp > $@
844
845 # Build the ICU4J icudata.jar.
846 # Command line:
847 #   (Run this from the output data folder which may not be .../source/data in an out-of-source build.)
848 #   ~/svn.icu/trunk/source/data> make JAR=jar ICU4J_ROOT=~/svn.icu4j/trunk icudata.jar
849 # You can omit the ICU4J_ROOT for just building the .jar files without copying them.
850 # You can omit the JAR if it's just jar.
851 JAR=jar
852
853 # For building the testdata.jar see ../test/testdata/Makefile.
854
855 ICU4J_TZDATA=$(OUTDIR)/icu4j/icutzdata.jar
856 ICU4J_TZDATA_FILES=zoneinfo64 metaZones timezoneTypes windowsZones
857 ICU4J_DATA_DIRNAME=com/ibm/icu/impl/data/$(ICUDATA_BASENAME_VERSION)b
858 ICU4J_TZDATA_PATHS=$(ICU4J_TZDATA_FILES:%="$(ICU4J_DATA_DIRNAME)/%.res")
859
860 # generate icu4j-related data to $(OUTDIR)/icu4j/com/ibm/icu/impl/data/...
861 generate-data: build-dir packagedata $(OUTTMPDIR)/$(ICUDATA_PLATFORM_NAME).dat uni-core-data
862         mkdir -p $(OUTDIR)/icu4j/$(ICU4J_DATA_DIRNAME)
863         mkdir -p $(OUTDIR)/icu4j/tzdata/$(ICU4J_DATA_DIRNAME)
864         echo $(UNI_CORE_DATA) > $(OUTDIR)/icu4j/add.txt
865         $(INVOKE) $(TOOLBINDIR)/icupkg $(OUTTMPDIR)/$(ICUDATA_PLATFORM_NAME).dat $(OUTDIR)/icu4j/$(ICUDATA_BASENAME_VERSION)b.dat -a $(OUTDIR)/icu4j/add.txt -s $(BUILDDIR) -x '*' -tb -d $(OUTDIR)/icu4j/$(ICU4J_DATA_DIRNAME)
866         mv $(ICU4J_TZDATA_PATHS:%=$(OUTDIR)/icu4j/%) "$(OUTDIR)/icu4j/tzdata/$(ICU4J_DATA_DIRNAME)"
867
868 $(OUTDIR)/icu4j/icutzdata.jar: generate-data
869         $(JAR) cf $(OUTDIR)/icu4j/icutzdata.jar -C $(OUTDIR)/icu4j/tzdata $(ICU4J_DATA_DIRNAME)/
870
871 # Build icudata.jar:
872 # - add the uni-core-data to the ICU package
873 # - swap the ICU data
874 # - extract all data items
875 # - package them into the .jar file
876 $(OUTDIR)/icu4j/icudata.jar: generate-data
877         $(JAR) cf $(OUTDIR)/icu4j/icudata.jar -C $(OUTDIR)/icu4j $(ICU4J_DATA_DIRNAME)/
878
879 ICU4J_DATA=$(OUTDIR)/icu4j/icudata.jar
880
881 ifdef ICU4J_ROOT
882
883 ICU4J_DATA_INSTALLED=$(ICU4J_ROOT)/main/shared/data/icudata.jar $(ICU4J_ROOT)/main/shared/data/icutzdata.jar
884
885 $(ICU4J_ROOT)/main/shared/data/icudata.jar: $(OUTDIR)/icu4j/icudata.jar
886         mkdir -p $(ICU4J_ROOT)/main/shared/data
887         cp $(OUTDIR)/icu4j/icudata.jar $(ICU4J_ROOT)/main/shared/data
888
889 $(ICU4J_ROOT)/main/shared/data/icutzdata.jar: $(OUTDIR)/icu4j/icutzdata.jar
890         mkdir -p $(ICU4J_ROOT)/main/shared/data
891         cp $(OUTDIR)/icu4j/icutzdata.jar $(ICU4J_ROOT)/main/shared/data
892
893 icu4j-data-install: $(ICU4J_DATA_INSTALLED)
894
895 else
896
897 icu4j-data-install: icu4j-data
898         @echo data is built into $(OUTDIR)/icu4j
899         @echo '** Error:' ICU4J_ROOT was not set, could not install
900         exit 1
901
902 endif
903
904 icu4j-data: $(ICU4J_DATA) $(ICU4J_TZDATA)
905
906
907 ###################################################################
908 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
909         cd $(top_builddir) \
910         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
911
912 icupkg.inc: pkgdataMakefile
913         $(MAKE) -f pkgdataMakefile
914
915 pkgdataMakefile:
916         cd $(top_builddir) \
917         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
918
919 ###########
920 ########### 390 (z/OS) support
921 UCMFILES390=ebcdic-xml-us.ucm ibm-37_P100-1995.ucm ibm-1047_P100-1995.ucm ibm-4909_P100-1999.ucm
922 # used to depend on pnames.icu uprops.icu ucase.icu ubidi.icu
923 # These are now hardcoded in ICU4C and only loaded in ICU4J.
924 ALLFILES390=cnvalias.icu $(UCMFILES390:.ucm=.cnv)
925
926 $(OUTTMPDIR)/icudata390.lst: $(SRCLISTDEPS)
927         @echo "generating $@ (list of 390 data files)"
928         @-$(RMV) $@
929         @for file in $(ALLFILES390); do \
930           echo $$file >> $@; \
931         done;
932
933 ifeq ($(POST_DATA_BUILD), os400-data-rebind)
934 os400-data-rebind: $(LIBICUUC)
935
936 $(LIBICUUC): $(LIBICUDT)
937         $(RMV) $(LIBICUUC)
938         (cd ../common && $(MAKE) RECURSIVE=YES) || exit;
939 endif
940