# List with all available character set descriptions.
charmaps := $(filter-out $(addprefix charmaps/, CVS RCS %~), \
- $(wildcard charmaps/*))
+ $(wildcard charmaps/[A-I]*) \
+ $(wildcard charmaps/[J-Z]*))
# List with all available character set descriptions.
locales := $(filter-out $(addprefix locales/, CVS RCS %~), \
$(wildcard locales/*))
+# List of repertoire maps.
+repertoiremaps := $(filter-out $(addprefix repertoiremaps/, CVS RCS %~), \
+ $(wildcard repertoiremaps/*))
+
test-srcs := collate-test xfrm-test tst-fmon tst-rpmatch
-test-input := de_DE.ISO-8859-1 da_DK.ISO-8859-1 fr_CA,2.13.ISO-8859-1
+test-input := de_DE.ISO-8859-1 da_DK.ISO-8859-1 fr_CA,2.13.ISO-8859-1 \
+ hr_HR.ISO-8859-2
+test-input-data = $(addsuffix .in, $(basename $(test-input)))
test-output := $(foreach s, .out .xout, \
$(addsuffix $s, $(basename $(test-input))))
-generated := $(test-input) $(test-output)
-generated-dirs := $(basename $(test-input)) en_US
-
-ld-test-names := test1 test2 test3 test4
+ld-test-names := test1 test2 test3 test4 test5
ld-test-srcs := $(addprefix tests/,$(addsuffix .cm,$(ld-test-names)) \
$(addsuffix .def,$(ld-test-names)))
-distribute := CHECKSUMS tst-fmon.sh tst-fmon.data ChangeLog sort-test.sh \
- README mnemonic.ds fr_CA,2.13.in de_DE.in da_DK.in \
- $(charmaps) $(locales) $(ld-test-srcs) tst-rpmatch.sh \
- SUPPORTED tst-locale.sh
+generated := $(test-input) $(test-output)
+generated-dirs := $(basename $(test-input)) en_US $(ld-test-names)
+
+distribute := CHECKSUMS README SUPPORTED ChangeLog \
+ $(charmaps) $(locales) $(repertoiremaps) \
+ tst-rpmatch.sh tst-locale.sh tst-fmon.sh sort-test.sh \
+ tst-fmon.data $(test-input-data) $(ld-test-srcs)
# Get $(inst_i18ndir) defined.
include ../Makeconfig
# Files to install.
-install-others := $(addprefix $(inst_i18ndir)/, $(charmaps) $(locales))
+install-others := $(addprefix $(inst_i18ndir)/, $(charmaps) $(locales) \
+ $(repertoiremaps))
include ../Rules
# Install the source files in the appropriate directories.
-$(inst_i18ndir)/charmaps/%: charmaps/%; $(do-install)
-$(inst_i18ndir)/locales/%: locales/%; $(do-install)
+$(inst_i18ndir)/charmaps/%: charmaps/% $(+force); $(do-install)
+$(inst_i18ndir)/locales/%: locales/% $(+force); $(do-install)
+$(inst_i18ndir)/repertoiremaps/%: repertoiremaps/% $(+force); $(do-install)
ifeq (no,$(cross-compiling))
-tests: $(objpfx)collate-test $(objpfx)xfrm-test $(objpfx)tst-fmon \
- $(objpfx)tst-rpmatch
- $(SHELL) -e sort-test.sh $(common-objpfx) $(test-input)
- $(SHELL) -e tst-fmon.sh $(common-objpfx) tst-fmon.data
- $(SHELL) -e tst-locale.sh $(common-objpfx)
- $(SHELL) -e tst-rpmatch.sh $(common-objpfx)
+.PHONY: do-collate-test do-tst-fmon do-tst-locale do-tst-rpmatch
+tests: do-collate-test do-tst-fmon do-tst-locale do-tst-rpmatch
+do-collate-test: sort-test.sh $(objpfx)collate-test $(objpfx)xfrm-test \
+ $(test-input-data)
+ $(SHELL) -e $< $(common-objpfx) $(test-input)
+do-tst-fmon: tst-fmon.sh $(objpfx)tst-fmon tst-fmon.data do-collate-test
+ $(SHELL) -e $< $(common-objpfx) tst-fmon.data
+do-tst-locale: tst-locale.sh $(ld-test-srcs)
+ $(SHELL) -e $< $(common-objpfx)
+do-tst-rpmatch: tst-rpmatch.sh $(objpfx)tst-rpmatch do-tst-fmon
+ $(SHELL) -e $< $(common-objpfx)
endif
# Sometimes the whole collection of locale files should be installed.
-ifneq ($(install_root),)
-LOCALEDEF=chroot $(install_root) $(bindir)/localedef
-else
-LOCALEDEF=$(common-objpfx)locale/localedef
-endif
+LOCALEDEF=$(common-objpfx)elf/ld.so --library-path $(rpath-link) $(common-objpfx)locale/localedef
install-locales:
- (while read locale charset; do \
- $(LOCALEDEF) -c -i $$locale -f $$charset $$locale; \
- done) < SUPPORTED
+ while read locale charset; do \
+ case $$locale in \#*) continue;; esac; \
+ $(LOCALEDEF) -c -i locales/$$locale -f charmaps/$$charset \
+ -u repertoiremaps/mnemonic.ds \
+ $(inst_localedir)/$$locale; \
+ done < SUPPORTED