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 # BEGIN android-changed 591 $(BUILDDIR)/%.cnv: $(UCMSRCDIR)/%.ucm $(TOOLBINDIR)/makeconv$(TOOLEXEEXT) 592 $(INVOKE) $(TOOLBINDIR)/makeconv -c --small -d $(BUILDDIR) $(UCMSRCDIR)/$(<F) 593 #END android-changed 594 #################################################### RES 595 # RES FILES 596 597 ### curr res 598 $(CURRBLDDIR)/%.res: $(CURRSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 599 $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(CURRSRCDIR) -d $(CURRBLDDIR) $(<F) 600 601 # copy the curr/pool.res file from the source folder to the build output folder 602 # and swap it to native endianness 603 $(CURRBLDDIR)/pool.res: $(CURRSRCDIR)/pool.res 604 $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(CURRSRCDIR)/pool.res $(CURRBLDDIR)/pool.res 605 606 $(CURRBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(CURR_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 607 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(CURR_TREE) -d $(CURRBLDDIR) $(INDEX_NAME).txt 608 609 $(CURR_INDEX_FILE): $(SRCLISTDEPS) 610 @echo "generating $@ (list of installed currency name locales)"; \ 611 $(RMV) $@; \ 612 echo "// Warning this file is automatically generated" > $@; \ 613 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 614 echo " InstalledLocales {" >> $@; \ 615 for file in $(INSTALLED_CURR_FILES); do \ 616 echo " $$file {\"\"}" >> $@; \ 617 done; \ 618 echo " }" >> $@; \ 619 echo "}" >> $@; 620 621 ### lang res 622 $(LANGBLDDIR)/%.res: $(LANGSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 623 $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(LANGSRCDIR) -d $(LANGBLDDIR) $(<F) 624 625 # copy the lang/pool.res file from the source folder to the build output folder 626 # and swap it to native endianness 627 $(LANGBLDDIR)/pool.res: $(LANGSRCDIR)/pool.res 628 $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(LANGSRCDIR)/pool.res $(LANGBLDDIR)/pool.res 629 630 $(LANGBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(LANG_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 631 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(LANG_TREE) -d $(LANGBLDDIR) $(INDEX_NAME).txt 632 633 $(LANG_INDEX_FILE): $(SRCLISTDEPS) 634 @echo "generating $@ (list of installed language name locales)"; \ 635 $(RMV) $@; \ 636 echo "// Warning this file is automatically generated" > $@; \ 637 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 638 echo " InstalledLocales {" >> $@; \ 639 for file in $(INSTALLED_LANG_FILES); do \ 640 echo " $$file {\"\"}" >> $@; \ 641 done; \ 642 echo " }" >> $@; \ 643 echo "}" >> $@; 644 645 ### region res 646 $(REGIONBLDDIR)/%.res: $(REGIONSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 647 $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(REGIONSRCDIR) -d $(REGIONBLDDIR) $(<F) 648 649 # copy the region/pool.res file from the source folder to the build output folder 650 # and swap it to native endianness 651 $(REGIONBLDDIR)/pool.res: $(REGIONSRCDIR)/pool.res 652 $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(REGIONSRCDIR)/pool.res $(REGIONBLDDIR)/pool.res 653 654 $(REGIONBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(REGION_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 655 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(REGION_TREE) -d $(REGIONBLDDIR) $(INDEX_NAME).txt 656 657 $(REGION_INDEX_FILE): $(SRCLISTDEPS) 658 @echo "generating $@ (list of installed region name locales)"; \ 659 $(RMV) $@; \ 660 echo "// Warning this file is automatically generated" > $@; \ 661 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 662 echo " InstalledLocales {" >> $@; \ 663 for file in $(INSTALLED_REGION_FILES); do \ 664 echo " $$file {\"\"}" >> $@; \ 665 done; \ 666 echo " }" >> $@; \ 667 echo "}" >> $@; 668 669 ### zone res 670 $(ZONEBLDDIR)/%.res: $(ZONESRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 671 $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(ZONESRCDIR) -d $(ZONEBLDDIR) $(<F) 672 673 # copy the zone/pool.res file from the source folder to the build output folder 674 # and swap it to native endianness 675 $(ZONEBLDDIR)/pool.res: $(ZONESRCDIR)/pool.res 676 $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(ZONESRCDIR)/pool.res $(ZONEBLDDIR)/pool.res 677 678 $(ZONEBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(ZONE_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 679 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(ZONE_TREE) -d $(ZONEBLDDIR) $(INDEX_NAME).txt 680 681 $(ZONE_INDEX_FILE): $(SRCLISTDEPS) 682 @echo "generating $@ (list of installed time zone name locales)"; \ 683 $(RMV) $@; \ 684 echo "// Warning this file is automatically generated" > $@; \ 685 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 686 echo " InstalledLocales {" >> $@; \ 687 for file in $(INSTALLED_ZONE_FILES); do \ 688 echo " $$file {\"\"}" >> $@; \ 689 done; \ 690 echo " }" >> $@; \ 691 echo "}" >> $@; 692 693 ### unit res 694 $(UNITBLDDIR)/%.res: $(UNITSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 695 $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(UNITSRCDIR) -d $(UNITBLDDIR) $(<F) 696 697 # copy the unit/pool.res file from the source folder to the build output folder 698 # and swap it to native endianness 699 $(UNITBLDDIR)/pool.res: $(UNITSRCDIR)/pool.res 700 $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(UNITSRCDIR)/pool.res $(UNITBLDDIR)/pool.res 701 702 $(UNITBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(UNIT_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 703 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(UNIT_TREE) -d $(UNITBLDDIR) $(INDEX_NAME).txt 704 705 $(UNIT_INDEX_FILE): $(SRCLISTDEPS) 706 @echo "generating $@ (list of installed time zone name locales)"; \ 707 $(RMV) $@; \ 708 echo "// Warning this file is automatically generated" > $@; \ 709 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 710 echo " InstalledLocales {" >> $@; \ 711 for file in $(INSTALLED_UNIT_FILES); do \ 712 echo " $$file {\"\"}" >> $@; \ 713 done; \ 714 echo " }" >> $@; \ 715 echo "}" >> $@; 716 717 ### collation res 718 # BEGIN android-changed. 719 $(COLBLDDIR)/%.res: $(COLSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 720 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(COLSRCDIR) -d $(COLBLDDIR) --omitCollationRules $(<F) 721 #END android-changed 722 723 $(COLBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(COLLATION_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 724 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(COLLATION_TREE) -d $(COLBLDDIR) $(INDEX_NAME).txt 725 726 $(COLLATION_INDEX_FILE): $(SRCLISTDEPS) 727 @echo "generating $@ (list of installed collation locales)"; \ 728 $(RMV) $@; \ 729 echo "// Warning this file is automatically generated" > $@; \ 730 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 731 echo " InstalledLocales {" >> $@; \ 732 for file in $(INSTALLED_COL_FILES); do \ 733 echo " $$file {\"\"}" >> $@; \ 734 done; \ 735 echo " }" >> $@; \ 736 echo "}" >> $@; 737 738 ### brk res 739 $(BRKBLDDIR)/%.res: $(BRKSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(BRK_FILES) $(DICT_FILES) $(DAT_FILES) 740 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(BRKSRCDIR) -d $(BRKBLDDIR) $(<F) 741 742 $(BRKBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(BREAK_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 743 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(BREAK_TREE) -d $(BRKBLDDIR) $(INDEX_NAME).txt 744 745 $(BRK_RES_INDEX_FILE): $(SRCLISTDEPS) 746 @echo "generating $@ (list of installed break locales)"; \ 747 $(RMV) $@; \ 748 echo "// Warning this file is automatically generated" > $@; \ 749 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 750 echo " InstalledLocales {" >> $@; \ 751 for file in $(INSTALLED_BRS_FILES); do \ 752 echo " $$file {\"\"}" >> $@; \ 753 done; \ 754 echo " }" >> $@; \ 755 echo "}" >> $@; 756 757 ### RBNF res 758 $(RBNFBLDDIR)/%.res: $(RBNFSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 759 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(RBNFSRCDIR) -d $(RBNFBLDDIR) $(<F) 760 761 $(RBNFBLDDIR)/$(INDEX_NAME).res: $(OUTTMPDIR)/$(RBNF_TREE)/$(INDEX_NAME).txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 762 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(OUTTMPDIR)/$(RBNF_TREE) -d $(RBNFBLDDIR) $(INDEX_NAME).txt 763 764 $(RBNF_INDEX_FILE): $(SRCLISTDEPS) 765 @echo "generating $@ (list of installed RBNF locales)"; \ 766 $(RMV) $@; \ 767 echo "// Warning this file is automatically generated" > $@; \ 768 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 769 echo " InstalledLocales {" >> $@; \ 770 for file in $(INSTALLED_RBNF_FILES); do \ 771 echo " $$file {\"\"}" >> $@; \ 772 done; \ 773 echo " }" >> $@; \ 774 echo "}" >> $@; 775 776 ### TRANSLIT res 777 $(TRANSLITBLDDIR)/%.res: $(TRANSLITSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 778 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -s $(TRANSLITSRCDIR) -d $(TRANSLITBLDDIR) $(<F) 779 780 ### normal (locale) res 781 all-RES: $(RES_FILES) 782 783 $(BUILDDIR)/%.res: $(LOCSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) $(DAT_FILES) 784 $(INVOKE) $(TOOLBINDIR)/genrb --usePoolBundle $(GENRBOPTS) -i $(BUILDDIR) -s $(LOCSRCDIR) -d $(BUILDDIR) $(<F) 785 786 # copy the locales/pool.res file from the source folder to the build output folder 787 # and swap it to native endianness 788 $(BUILDDIR)/pool.res: $(LOCSRCDIR)/pool.res 789 $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(LOCSRCDIR)/pool.res $(BUILDDIR)/pool.res 790 791 # if the tzcode directory contains a new tzdata*.tar.gz file, use it for zoneinfo 792 ifeq ($(TZDATA),) 793 TZDATA = $(firstword $(wildcard $(top_builddir)/tools/tzcode/tzdata*.tar.gz) $(wildcard $(top_srcdir)/tools/tzcode/tzdata*.tar.gz)) 794 endif 795 796 ifneq ($(TZDATA),) 797 798 TZCODE_DIR=$(top_builddir)/tools/tzcode 799 ZONEINFO=$(TZCODE_DIR)/zoneinfo64.txt 800 801 # Override the normal genrb for zoneinfo to always pull from 802 # icu/source/tools/tzcode/zoneinfo64.txt 803 $(BUILDDIR)/zoneinfo64.res: $(ZONEINFO) $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 804 @echo Note: $(MISCSRCDIR)/zoneinfo.txt is IGNORED because $(TZDATA) is present. 805 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -q -i $(BUILDDIR) -d $(BUILDDIR) $(ZONEINFO) 806 807 # Create the tzcode tool and zoneinfo as needed. 808 $(ZONEINFO): $(TZDATA) 809 @echo "$(MAKE)[$(MAKELEVEL)]: Making \`$(ZONEINFO)' in \`$(TZCODE_DIR)'"; \ 810 (cd $(TZCODE_DIR) && $(MAKE)) || exit; \ 811 812 # end of zoneinfo-generation 813 endif 814 815 # zoneinfo has some issues. Ignore some warnings with -q 816 $(BUILDDIR)/%.res: $(MISCSRCDIR)/%.txt $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 817 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -q -i $(BUILDDIR) -s $(MISCSRCDIR) -d $(BUILDDIR) $(<F) 818 819 820 821 $(INDEX_FILE): $(SRCLISTDEPS) 822 @echo "generating $@ (list of installed locales)"; \ 823 $(RMV) $@; \ 824 echo "// Warning this file is automatically generated" > $@; \ 825 echo "$(INDEX_NAME):table(nofallback) {" >> $@; \ 826 echo " CLDRVersion { \"$(GENRB_CLDR_VERSION)\" }" >> $@; \ 827 echo " InstalledLocales {" >> $@; \ 828 for file in $(INSTALLED_RB_FILES); do \ 829 echo " $$file {\"\"}" >> $@; \ 830 done; \ 831 echo " }" >> $@; \ 832 echo "}" >> $@; 833 834 clean-resindex: 835 -$(RMV) $(BUILDDIR)/$(INDEX_NAME).txt $(PKGDATA_LIST) 836 837 $(BUILDDIR)/$(INDEX_NAME).res: $(INDEX_FILE) $(TOOLBINDIR)/genrb$(TOOLEXEEXT) 838 $(INVOKE) $(TOOLBINDIR)/genrb $(GENRBOPTS) -i $(BUILDDIR) -d $(BUILDDIR) $(INDEX_FILE) 839 840 # The core Unicode properties files (pnames.icu, uprops.icu, ucase.icu, ubidi.icu) 841 # are hardcoded in the common DLL and therefore not included in the data package any more. 842 # They are not built by default but need to be built for ICU4J data and for getting the .c source files 843 # when updating the Unicode data. 844 uni-core-data: build-dir $(UNI_CORE_TARGET_DATA) 845 @echo Unicode .icu files built to $(BUILDDIR) 846 echo timestamp > $@ 847 848 # Build the ICU4J icudata.jar. 849 # Command line: 850 # (Run this from the output data folder which may not be .../source/data in an out-of-source build.) 851 # ~/svn.icu/trunk/source/data> make JAR=jar ICU4J_ROOT=~/svn.icu4j/trunk icudata.jar 852 # You can omit the ICU4J_ROOT for just building the .jar files without copying them. 853 # You can omit the JAR if it's just jar. 854 JAR=jar 855 856 # For building the testdata.jar see ../test/testdata/Makefile. 857 858 ICU4J_TZDATA=$(OUTDIR)/icu4j/icutzdata.jar 859 ICU4J_TZDATA_FILES=zoneinfo64 metaZones timezoneTypes windowsZones 860 ICU4J_DATA_DIRNAME=com/ibm/icu/impl/data/$(ICUDATA_BASENAME_VERSION)b 861 ICU4J_TZDATA_PATHS=$(ICU4J_TZDATA_FILES:%="$(ICU4J_DATA_DIRNAME)/%.res") 862 863 # generate icu4j-related data to $(OUTDIR)/icu4j/com/ibm/icu/impl/data/... 864 generate-data: build-dir packagedata $(OUTTMPDIR)/$(ICUDATA_PLATFORM_NAME).dat uni-core-data 865 mkdir -p $(OUTDIR)/icu4j/$(ICU4J_DATA_DIRNAME) 866 mkdir -p $(OUTDIR)/icu4j/tzdata/$(ICU4J_DATA_DIRNAME) 867 echo $(UNI_CORE_DATA) > $(OUTDIR)/icu4j/add.txt 868 $(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) 869 mv $(ICU4J_TZDATA_PATHS:%=$(OUTDIR)/icu4j/%) "$(OUTDIR)/icu4j/tzdata/$(ICU4J_DATA_DIRNAME)" 870 871 $(OUTDIR)/icu4j/icutzdata.jar: generate-data 872 $(JAR) cf $(OUTDIR)/icu4j/icutzdata.jar -C $(OUTDIR)/icu4j/tzdata $(ICU4J_DATA_DIRNAME)/ 873 874 # Build icudata.jar: 875 # - add the uni-core-data to the ICU package 876 # - swap the ICU data 877 # - extract all data items 878 # - package them into the .jar file 879 $(OUTDIR)/icu4j/icudata.jar: generate-data 880 $(JAR) cf $(OUTDIR)/icu4j/icudata.jar -C $(OUTDIR)/icu4j $(ICU4J_DATA_DIRNAME)/ 881 882 ICU4J_DATA=$(OUTDIR)/icu4j/icudata.jar 883 884 ifdef ICU4J_ROOT 885 886 ICU4J_DATA_INSTALLED=$(ICU4J_ROOT)/main/shared/data/icudata.jar $(ICU4J_ROOT)/main/shared/data/icutzdata.jar 887 888 $(ICU4J_ROOT)/main/shared/data/icudata.jar: $(OUTDIR)/icu4j/icudata.jar 889 mkdir -p $(ICU4J_ROOT)/main/shared/data 890 cp $(OUTDIR)/icu4j/icudata.jar $(ICU4J_ROOT)/main/shared/data 891 892 $(ICU4J_ROOT)/main/shared/data/icutzdata.jar: $(OUTDIR)/icu4j/icutzdata.jar 893 mkdir -p $(ICU4J_ROOT)/main/shared/data 894 cp $(OUTDIR)/icu4j/icutzdata.jar $(ICU4J_ROOT)/main/shared/data 895 896 icu4j-data-install: $(ICU4J_DATA_INSTALLED) 897 898 else 899 900 icu4j-data-install: icu4j-data 901 @echo data is built into $(OUTDIR)/icu4j 902 @echo '** Error:' ICU4J_ROOT was not set, could not install 903 exit 1 904 905 endif 906 907 icu4j-data: $(ICU4J_DATA) $(ICU4J_TZDATA) 908 909 910 ################################################################### 911 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 912 cd $(top_builddir) \ 913 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 914 915 icupkg.inc: pkgdataMakefile 916 $(MAKE) -f pkgdataMakefile 917 918 pkgdataMakefile: 919 cd $(top_builddir) \ 920 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 921 922 ########### 923 ########### 390 (z/OS) support 924 UCMFILES390=ebcdic-xml-us.ucm ibm-37_P100-1995.ucm ibm-1047_P100-1995.ucm ibm-4909_P100-1999.ucm 925 # used to depend on pnames.icu uprops.icu ucase.icu ubidi.icu 926 # These are now hardcoded in ICU4C and only loaded in ICU4J. 927 ALLFILES390=cnvalias.icu $(UCMFILES390:.ucm=.cnv) 928 929 $(OUTTMPDIR)/icudata390.lst: $(SRCLISTDEPS) 930 @echo "generating $@ (list of 390 data files)" 931 @-$(RMV) $@ 932 @for file in $(ALLFILES390); do \ 933 echo $$file >> $@; \ 934 done; 935 936 ifeq ($(POST_DATA_BUILD), os400-data-rebind) 937 os400-data-rebind: $(LIBICUUC) 938 939 $(LIBICUUC): $(LIBICUDT) 940 $(RMV) $(LIBICUUC) 941 (cd ../common && $(MAKE) RECURSIVE=YES) || exit; 942 endif 943 944