Avoid potential negative array index access to cached text.
[LibreOffice.git] / i18npool / CustomTarget_breakiterator.mk
blob8229a5e8f3149c7145a3604e5d03321f11aa1e4b
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_CustomTarget_CustomTarget,i18npool/breakiterator))
12 i18npool_BIDIR := $(call gb_CustomTarget_get_workdir,i18npool/breakiterator)
14 ifneq ($(filter iOS ANDROID,$(OS)),)
16 $(call gb_CustomTarget_get_target,i18npool/breakiterator) : \
17 $(i18npool_BIDIR)/dict_ja.data $(i18npool_BIDIR)/dict_zh.data $(i18npool_BIDIR)/OpenOffice_dat.c
19 $(i18npool_BIDIR)/dict_%.data : \
20 $(SRCDIR)/i18npool/source/breakiterator/data/%.dic \
21 $(call gb_Executable_get_runtime_dependencies,gendict) \
22 | $(i18npool_BIDIR)/.dir
23 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),DIC,1)
24 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),DIC)
25 $(call gb_Helper_abbreviate_dirs,\
26 $(call gb_Helper_execute,gendict) $< $@ $(patsubst $(i18npool_BIDIR)/dict_%.cxx,%,$@))
27 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),DIC)
29 else # !iOS ANDROID
31 $(call gb_CustomTarget_get_target,i18npool/breakiterator) : \
32 $(i18npool_BIDIR)/dict_ja.cxx $(i18npool_BIDIR)/dict_zh.cxx $(i18npool_BIDIR)/OpenOffice_dat.c
34 $(i18npool_BIDIR)/dict_%.cxx : \
35 $(SRCDIR)/i18npool/source/breakiterator/data/%.dic \
36 $(call gb_Executable_get_runtime_dependencies,gendict) \
37 | $(i18npool_BIDIR)/.dir
38 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),DIC,1)
39 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),DIC)
40 $(call gb_Helper_abbreviate_dirs,\
41 $(call gb_Helper_execute,gendict) $< $@ $(patsubst $(i18npool_BIDIR)/dict_%.cxx,%,$@))
42 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),DIC)
44 endif
46 i18npool_BRKTXTS := \
47 count_word.brk \
48 $(call gb_Helper_optional_locale,he,dict_word_he.brk) \
49 $(call gb_Helper_optional_locale,hu,dict_word_hu.brk) \
50 dict_word_nodash.brk \
51 dict_word_prepostdash.brk \
52 dict_word.brk \
53 $(call gb_Helper_optional_locale,he,edit_word_he.brk) \
54 $(call gb_Helper_optional_locale,hu,edit_word_hu.brk) \
55 edit_word.brk \
56 line.brk \
57 sent.brk
59 # 'gencmn', 'genbrk' and 'genccode' are tools generated and delivered by icu project to process icu breakiterator rules.
60 # The output of gencmn generates warnings under Windows. We want to minimize the patches to external tools,
61 # so the output (OpenOffice_dat.c) is changed here to include a pragma to disable the warnings.
62 # Output of gencmn is redirected to OpenOffice_tmp.c with the -t switch.
63 $(i18npool_BIDIR)/OpenOffice_dat.c : $(SRCDIR)/i18npool/CustomTarget_breakiterator.mk \
64 $(patsubst %.brk,$(i18npool_BIDIR)/%_brk.c,$(i18npool_BRKTXTS)) \
65 $(call gb_ExternalExecutable_get_dependencies,gencmn)
66 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CMN,1)
67 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),CMN)
68 $(call gb_Helper_abbreviate_dirs,\
69 RESPONSEFILE=$(shell $(gb_MKTEMP)) && \
70 $(foreach brk,$(i18npool_BRKTXTS),echo '$(brk)' >> $${RESPONSEFILE} && ) \
71 $(call gb_ExternalExecutable_get_command,gencmn) -n OpenOffice -t tmp -S -d $(i18npool_BIDIR)/ 0 $${RESPONSEFILE} && \
72 rm -f $${RESPONSEFILE} && \
73 echo '#ifdef _MSC_VER' > $@ && \
74 echo '#pragma warning( disable : 4229 )' >> $@ && \
75 echo '#endif' >> $@ && \
76 cat $(subst _dat,_tmp,$@) >> $@)
77 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),CMN)
79 $(i18npool_BIDIR)/%_brk.c : $(i18npool_BIDIR)/%.brk $(call gb_ExternalExecutable_get_dependencies,genccode)
80 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CCD,1)
81 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),CCD)
82 $(call gb_Helper_abbreviate_dirs,\
83 $(call gb_ExternalExecutable_get_command,genccode) -n OpenOffice -d $(i18npool_BIDIR)/ $< \
84 $(if $(findstring s,$(MAKEFLAGS)),> /dev/null))
85 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),CCD)
87 $(i18npool_BIDIR)/%.brk : $(SRCDIR)/i18npool/source/breakiterator/data/%.txt \
88 $(call gb_ExternalExecutable_get_dependencies,genbrk) \
89 | $(i18npool_BIDIR)/.dir
90 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),BRK,1)
91 $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),BRK)
92 $(call gb_Helper_abbreviate_dirs,\
93 $(call gb_ExternalExecutable_get_command,genbrk) \
94 $(if $(SYSTEM_ICU),,-i $(call gb_UnpackedTarball_get_dir,icu)/source/data/out/tmp) \
95 -r $< -o $@ $(if $(findstring s,$(MAKEFLAGS)),> /dev/null))
96 $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),BRK)
98 # vim: set noet sw=4 ts=4: