michael@0: #****************************************************************************** michael@0: # michael@0: # Copyright (C) 1998-2013, International Business Machines michael@0: # Corporation and others. All Rights Reserved. michael@0: # michael@0: #****************************************************************************** michael@0: ## Top-level Makefile.in for ICU michael@0: ## Stephen F. Booth michael@0: michael@0: srcdir = @srcdir@ michael@0: top_srcdir = @top_srcdir@ michael@0: michael@0: top_builddir = . michael@0: michael@0: include $(top_builddir)/icudefs.mk michael@0: michael@0: docdir = $(datadir)/doc michael@0: docsubdir = $(PACKAGE)$(ICULIBDASHSUFFIX)/html michael@0: docfilesdir = doc/html michael@0: docfiles = $(docfilesdir)/*.png $(docfilesdir)/*.html $(docfilesdir)/*.css $(docfilesdir)/*.tag michael@0: docsrchdir = $(docfilesdir)/search michael@0: docsrchfiles = $(docsrchdir)/* michael@0: michael@0: ## michael@0: michael@0: ## Build directory information michael@0: subdir = . michael@0: michael@0: #AUTOCONF = @AUTOCONF@ michael@0: michael@0: ## Optional directory setup michael@0: @LAYOUT_TRUE@LAYOUT = layout layoutex michael@0: @ICUIO_TRUE@ICUIO = io michael@0: @EXTRAS_TRUE@EXTRA = extra michael@0: @TESTS_TRUE@TEST = test michael@0: @SAMPLES_TRUE@SAMPLE = samples michael@0: @TOOLS_TRUE@TOOLS = tools michael@0: michael@0: ## pkgconfig setup. Always have uc and i18n. Others are optional. michael@0: ALL_PKGCONFIG_SUFFIX=uc i18n michael@0: @LAYOUT_TRUE@ALL_PKGCONFIG_SUFFIX+= le lx michael@0: @ICUIO_TRUE@ALL_PKGCONFIG_SUFFIX+= io michael@0: michael@0: DOXYGEN = @DOXYGEN@ michael@0: DOCZIP = icu-docs.zip michael@0: michael@0: ## Files to remove for 'make clean' michael@0: CLEANFILES = *~ michael@0: michael@0: ALL_PKGCONFIG_FILES=$(ALL_PKGCONFIG_SUFFIX:%=$(top_builddir)/config/icu-%.pc) michael@0: michael@0: ## Files built (autoconfed) and installed michael@0: INSTALLED_BUILT_FILES = $(top_builddir)/config/Makefile.inc $(top_builddir)/config/pkgdata.inc $(top_builddir)/config/icu-config @platform_make_fragment@ $(EXTRA_DATA:%=$(DESTDIR)$(pkglibdir)/%) $(ALL_PKGCONFIG_FILES) michael@0: michael@0: ## Files built (autoconfed) but not installed michael@0: LOCAL_BUILT_FILES = icudefs.mk config/icucross.mk config/icucross.inc michael@0: michael@0: DOCDIRS = common i18n michael@0: SUBDIRS = stubdata common i18n $(LAYOUT) $(ICUIO) $(TOOLS) data $(EXTRA) $(SAMPLE) $(TEST) michael@0: michael@0: SECTION = 1 michael@0: michael@0: MANX_FILES = config/icu-config.$(SECTION) michael@0: michael@0: ALL_MAN_FILES = $(MANX_FILES) michael@0: michael@0: ## Extra files to install [nothing at present] michael@0: EXTRA_DATA = michael@0: michael@0: ## List of phony targets michael@0: .PHONY : all all-local all-recursive install install-local install-udata install-udata-files install-udata-dlls \ michael@0: install-recursive clean clean-local clean-recursive distclean \ michael@0: distclean-local distclean-recursive doc dist dist-local dist-recursive \ michael@0: check check-local check-recursive clean-recursive-with-twist install-icu \ michael@0: doc install-doc tests icu4j-data icu4j-data-install update-windows-makefiles xcheck-local xcheck-recursive xperf xcheck xperf-recursive \ michael@0: check-exhaustive check-exhaustive-local check-exhaustive-recursive releaseDist michael@0: michael@0: ## Clear suffix list michael@0: .SUFFIXES : michael@0: michael@0: ## List of standard targets michael@0: all: all-local all-recursive michael@0: install: install-recursive install-local michael@0: clean: clean-recursive-with-twist clean-local michael@0: distclean : distclean-recursive distclean-local michael@0: dist: dist-recursive dist-local michael@0: check: all check-recursive michael@0: check-recursive: all michael@0: xcheck: all xcheck-recursive michael@0: xperf: all xperf-recursive michael@0: check-exhaustive: all check-exhaustive-recursive michael@0: michael@0: pcheck: all tests michael@0: @$(MAKE) -C test pcheck michael@0: michael@0: check-exhaustive-local: check-local michael@0: michael@0: xcheck-recursive: all xcheck-local michael@0: @$(MAKE) -C test xcheck michael@0: michael@0: xperf-recursive: all tests michael@0: @$(MAKE) -C test/perf xperf michael@0: michael@0: $(top_builddir)/config/icuinfo.xml: all michael@0: @$(MAKE) -C tools/icuinfo check michael@0: michael@0: ifeq ($(DOXYGEN),) michael@0: doc doc-searchengine: michael@0: @echo you need Doxygen to generate documentation. Doxygen can be found on the Web michael@0: @echo at http://www.doxygen.org/ michael@0: else michael@0: doc: doc/html/index.html michael@0: michael@0: doc-searchengine: Doxyfile $(wildcard ./common/unicode/platform.h $(srcdir)/common/unicode/*.h $(srcdir)/i18n/unicode/*.h $(srcdir)/layout/unicode/*.h $(srcdir)/io/unicode/*.h) michael@0: sed < Doxyfile -e 's%[^#]*SEARCHENGINE.*%SEARCHENGINE=YES%' | $(DOXYGEN) - michael@0: @echo adding links from non-namespaced class files michael@0: find doc/html -name 'classicu_1_1*' -print | sed -e 's%^\(.*class\)icu_1_1\(.*\)$$%ln & \1\2%' | sh michael@0: @echo Docs created - WARNING, probably contains non-GPL .js files michael@0: michael@0: doc/html/index.html: Doxyfile $(wildcard ./common/unicode/platform.h $(srcdir)/common/unicode/*.h $(srcdir)/i18n/unicode/*.h $(srcdir)/layout/unicode/*.h $(srcdir)/io/unicode/*.h) michael@0: $(DOXYGEN) michael@0: @echo adding links from non-namespaced class files michael@0: find doc/html -name 'classicu_1_1*' -print | sed -e 's%^\(.*class\)icu_1_1\(.*\)$$%ln & \1\2%' | sh michael@0: michael@0: Doxyfile: $(srcdir)/Doxyfile.in michael@0: CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: $(DOCZIP): doc michael@0: -$(RMV) $(DOCZIP) michael@0: ( cd doc/html ; zip -r ../../$(DOCZIP) * ) michael@0: endif michael@0: michael@0: LOCAL_SUBDIRS = $(SUBDIRS) michael@0: CLEAN_FIRST_SUBDIRS = $(TOOLS) michael@0: michael@0: $(LIBDIR) $(BINDIR): michael@0: -$(MKINSTALLDIRS) $@ michael@0: michael@0: ## Recursive targets michael@0: all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive check-exhaustive-recursive: $(LIBDIR) $(BINDIR) michael@0: @dot_seen=no; \ michael@0: target=`echo $@ | sed s/-recursive//`; \ michael@0: list='$(LOCAL_SUBDIRS)'; for subdir in $$list; do \ michael@0: echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \ michael@0: if test "$$subdir" = "."; then \ michael@0: dot_seen=yes; \ michael@0: local_target="$$target-local"; \ michael@0: else \ michael@0: local_target="$$target"; \ michael@0: fi; \ michael@0: (cd $$subdir && $(MAKE) RECURSIVE=YES $$local_target) || exit; \ michael@0: done; \ michael@0: if test "$$dot_seen" = "no"; then \ michael@0: $(MAKE) "$$target-local" || exit; \ michael@0: fi michael@0: michael@0: clean-recursive-with-twist: michael@0: $(MAKE) clean-recursive LOCAL_SUBDIRS='$(CLEAN_FIRST_SUBDIRS) $(filter-out $(CLEAN_FIRST_SUBDIRS),$(LOCAL_SUBDIRS))' michael@0: michael@0: all-local: $(srcdir)/configure $(LOCAL_BUILT_FILES) $(INSTALLED_BUILT_FILES) michael@0: ifndef VERBOSE michael@0: @echo "Note: rebuild with \"$(MAKE) VERBOSE=1 $(MAKECMDGOALS)\" to show all compiler parameters." michael@0: endif michael@0: install-local: install-icu install-manx michael@0: michael@0: install-icu: $(INSTALLED_BUILT_FILES) michael@0: @$(MKINSTALLDIRS) $(DESTDIR)$(pkgdatadir)/config michael@0: @$(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir) michael@0: @$(MKINSTALLDIRS) $(DESTDIR)$(bindir) michael@0: @$(MKINSTALLDIRS) $(DESTDIR)$(sbindir) michael@0: $(INSTALL_DATA) @platform_make_fragment@ $(DESTDIR)$(pkgdatadir)/config/@platform_make_fragment_name@ michael@0: $(INSTALL_SCRIPT) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(pkgdatadir)/mkinstalldirs michael@0: $(INSTALL_SCRIPT) $(top_srcdir)/install-sh $(DESTDIR)$(pkgdatadir)/install-sh michael@0: @$(MKINSTALLDIRS) $(DESTDIR)$(libdir)/pkgconfig michael@0: $(INSTALL_DATA) $(ALL_PKGCONFIG_FILES) $(DESTDIR)$(libdir)/pkgconfig/ michael@0: $(INSTALL_DATA) $(top_srcdir)/../license.html $(DESTDIR)$(pkgdatadir)/license.html michael@0: $(INSTALL_SCRIPT) $(top_builddir)/config/icu-config $(DESTDIR)$(bindir)/icu-config michael@0: $(INSTALL_DATA) $(top_builddir)/config/Makefile.inc $(DESTDIR)$(pkglibdir)/Makefile.inc michael@0: $(INSTALL_DATA) $(top_builddir)/config/pkgdata.inc $(DESTDIR)$(pkglibdir)/pkgdata.inc michael@0: # @echo icuinfo.xml is built after make check. michael@0: # -$(INSTALL_DATA) $(top_builddir)/config/icuinfo.xml $(DESTDIR)$(pkglibdir)/icuinfo.xml michael@0: cd $(DESTDIR)$(pkglibdir)/..; \ michael@0: $(RM) current && ln -s $(VERSION) current; \ michael@0: $(RM) Makefile.inc && ln -s current/Makefile.inc Makefile.inc; \ michael@0: $(RM) pkgdata.inc && ln -s current/pkgdata.inc pkgdata.inc michael@0: michael@0: ifeq ($(DOXYGEN),) michael@0: install-doc: michael@0: else michael@0: install-doc: doc michael@0: $(RM) -r $(DESTDIR)$(docdir)/$(docsubdir) michael@0: $(MKINSTALLDIRS) $(DESTDIR)$(docdir)/$(docsubdir) michael@0: $(INSTALL_DATA) $(docfiles) $(DESTDIR)$(docdir)/$(docsubdir) michael@0: michael@0: endif michael@0: michael@0: $(DESTDIR)$(pkglibdir)/%: $(top_srcdir)/../data/% michael@0: $(INSTALL_DATA) $< $@ michael@0: michael@0: # Build the tests, but don't run them. michael@0: tests: all michael@0: $(MAKE) -C $(top_builddir)/test michael@0: michael@0: clean-local: michael@0: test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) michael@0: -$(RMV) "test-*.xml" michael@0: -$(RMV) "perf-*.xml" michael@0: -$(RMV) $(ALL_PKGCONFIG_FILES) $(top_builddir)/config/icuinfo.xml michael@0: $(RMV) Doxyfile doc $(DOCZIP) michael@0: michael@0: distclean-local: clean-local michael@0: $(RMV) $(top_builddir)/config/Makefile.inc $(top_builddir)/config/pkgdata.inc $(top_builddir)/config/icu-config $(top_builddir)/config/icu.pc $(ALL_PKGCONFIG_FILES) michael@0: $(RMV) config.cache config.log config.status $(top_builddir)/config/icucross.mk $(top_builddir)/config/icucross.inc autom4te.cache uconfig.h.prepend michael@0: $(RMV) Makefile config/Makefile icudefs.mk $(LIBDIR) $(BINDIR) michael@0: -$(RMV) dist michael@0: michael@0: check-local: xcheck-local michael@0: -$(RMV) test-local.xml michael@0: michael@0: xcheck-local: $(top_builddir)/config/icu-config $(top_builddir)/config/Makefile.inc $(top_builddir)/config/pkgdata.inc michael@0: @echo verifying that icu-config --selfcheck can operate michael@0: @test "passed" = "$(shell $(top_builddir)/config/icu-config --selfcheck 2>&1)" || (echo "FAIL: icu-config could not run properly." ; exit 1) michael@0: @echo verifying that $(MAKE) -f Makefile.inc selfcheck can operate michael@0: @test "passed" = "$(shell $(MAKE) --no-print-directory -f $(top_builddir)/config/Makefile.inc SELFCHECK=1 selfcheck)" || (echo "FAIL: Makefile.inc could not run properly." ; exit 1 ) michael@0: @echo "PASS: config selfcheck OK" michael@0: michael@0: #$(srcdir)/configure : $(srcdir)/configure.ac $(top_srcdir)/aclocal.m4 michael@0: # cd $(srcdir) && aclocal && $(AUTOCONF) michael@0: michael@0: icudefs.mk: $(srcdir)/icudefs.mk.in $(top_builddir)/config.status michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: config/icucross.mk: $(top_builddir)/icudefs.mk $(top_builddir)/Makefile michael@0: @echo rebuilding $@ michael@0: @(echo "CROSS_ICU_VERSION=$(VERSION)" ;\ michael@0: echo "TOOLEXEEXT=$(EXEEXT)" \ michael@0: ) > $@ michael@0: @(echo 'TOOLBINDIR=$$(cross_buildroot)/bin' ;\ michael@0: echo 'TOOLLIBDIR=$$(cross_buildroot)/lib' ;\ michael@0: echo "INVOKE=$(LDLIBRARYPATH_ENVVAR)=$(LIBRARY_PATH_PREFIX)"'$$(TOOLLIBDIR):$$(cross_buildroot)/stubdata:$$(cross_buildroot)/tools/ctestfw:$$$$'"$(LDLIBRARYPATH_ENVVAR)" ;\ michael@0: echo "PKGDATA_INVOKE=$(LDLIBRARYPATH_ENVVAR)=$(LIBRARY_PATH_PREFIX)"'$$(cross_buildroot)/stubdata:$$(cross_buildroot)/tools/ctestfw:$$(TOOLLIBDIR):$$$$'"$(LDLIBRARYPATH_ENVVAR) " ;\ michael@0: echo ) >> $@ michael@0: michael@0: config/icucross.inc: $(top_builddir)/icudefs.mk $(top_builddir)/Makefile @platform_make_fragment@ michael@0: @echo rebuilding $@ michael@0: @(grep '^CURR_FULL_DIR' $(top_builddir)/icudefs.mk ; \ michael@0: grep '^CURR_FULL_DIR' @platform_make_fragment@ || echo ""; \ michael@0: ) > $@ michael@0: michael@0: config/icu.pc: $(srcdir)/config/icu.pc.in michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: config/icu-uc.pc: config/icu.pc Makefile icudefs.mk michael@0: @cat config/icu.pc > $@ michael@0: @echo "Description: $(PACKAGE_ICU_DESCRIPTION): Common and Data libraries" >> $@ michael@0: @echo "Name: $(PACKAGE)-uc" >> $@ michael@0: @echo "Libs:" '-L$${libdir}' "${ICULIBS_UC}" "${ICULIBS_DT}" >> $@ michael@0: @echo "Libs.private:" '$${baselibs}' >> $@ michael@0: @echo $@ updated. michael@0: michael@0: config/icu-i18n.pc: config/icu.pc Makefile icudefs.mk michael@0: @cat config/icu.pc > $@ michael@0: @echo "Description: $(PACKAGE_ICU_DESCRIPTION): Internationalization library" >> $@ michael@0: @echo "Name: $(PACKAGE)-i18n" >> $@ michael@0: @echo "Requires: icu-uc" >> $@ michael@0: @echo "Libs:" "${ICULIBS_I18N}" >> $@ michael@0: @echo $@ updated. michael@0: michael@0: config/icu-io.pc: config/icu.pc Makefile icudefs.mk michael@0: @cat config/icu.pc > $@ michael@0: @echo "Description: $(PACKAGE_ICU_DESCRIPTION): Stream and I/O Library" >> $@ michael@0: @echo "Name: $(PACKAGE)-io" >> $@ michael@0: @echo "Requires: icu-i18n" >> $@ michael@0: @echo "Libs:" "${ICULIBS_IO}" >> $@ michael@0: @echo $@ updated. michael@0: michael@0: config/icu-le.pc: config/icu.pc Makefile icudefs.mk michael@0: @cat config/icu.pc > $@ michael@0: @echo "Description: $(PACKAGE_ICU_DESCRIPTION): Layout library" >> $@ michael@0: @echo "Name: $(PACKAGE)-le" >> $@ michael@0: @echo "Requires: icu-uc" >> $@ michael@0: @echo "Libs:" "${ICULIBS_LE}" >> $@ michael@0: @echo $@ updated. michael@0: michael@0: config/icu-lx.pc: config/icu.pc Makefile icudefs.mk michael@0: @cat config/icu.pc > $@ michael@0: @echo "Description: $(PACKAGE_ICU_DESCRIPTION): Paragraph Layout library" >> $@ michael@0: @echo "Name: $(PACKAGE)-lx" >> $@ michael@0: @echo "Requires: icu-le" >> $@ michael@0: @echo "Libs:" "${ICULIBS_LX}" >> $@ michael@0: @echo $@ updated. michael@0: michael@0: michael@0: Makefile: $(srcdir)/Makefile.in icudefs.mk $(top_builddir)/config.status michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: $(top_builddir)/config/Makefile.inc: $(srcdir)/config/Makefile.inc.in $(top_builddir)/config.status michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: $(top_builddir)/config/pkgdata.inc: icudefs.mk $(top_builddir)/config/pkgdataMakefile michael@0: cd $(top_builddir)/config; \ michael@0: $(MAKE) -f pkgdataMakefile michael@0: michael@0: $(top_builddir)/config/pkgdataMakefile: michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: $(top_builddir)/config/icu-config: $(top_builddir)/Makefile $(top_srcdir)/config/icu-config-top $(top_srcdir)/config/icu-config-bottom $(top_builddir)/config/Makefile.inc @platform_make_fragment@ $(top_srcdir)/config/make2sh.sed michael@0: -$(RMV) $@ michael@0: $(INSTALL_SCRIPT) $(top_srcdir)/config/icu-config-top $@ michael@0: chmod u+w $@ michael@0: @echo "# Following from @platform_make_fragment@" >> $@ michael@0: LC_ALL=C sed -f $(top_srcdir)/config/make2sh.sed < $(top_builddir)/config/Makefile.inc | grep -v '#M#' | uniq >> $@ michael@0: LC_ALL=C sed -f $(top_srcdir)/config/make2sh.sed < @platform_make_fragment@ | grep -v '#M#' | uniq >> $@ michael@0: cat $(top_srcdir)/config/icu-config-bottom >> $@ michael@0: echo "# Rebuilt on "`date` >> $@ michael@0: chmod u-w $@ michael@0: michael@0: config.status: $(srcdir)/configure $(srcdir)/common/unicode/uvernum.h michael@0: @echo michael@0: @echo michael@0: @echo "*** config.status has become stale ***" michael@0: @echo " 'configure' and/or 'uvernum.h' have changed, please" michael@0: @echo " do 'runConfigureICU' (or 'configure') again, as per" michael@0: @echo " the readme.html." michael@0: @echo michael@0: @echo michael@0: exit 1 michael@0: michael@0: michael@0: install-manx: $(MANX_FILES) michael@0: $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) michael@0: $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) michael@0: michael@0: config/%.$(SECTION): $(srcdir)/config/%.$(SECTION).in michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: icu4j-data-install icu4j-data: all tests michael@0: @echo ICU4J_ROOT=$(ICU4J_ROOT) michael@0: @$(MAKE) -C test/testdata $@ michael@0: @$(MAKE) -C data $@ michael@0: michael@0: # For updating Windows makefiles michael@0: michael@0: WINDOWS_UPDATEFILES=$(srcdir)/data/makedata.mak $(shell find $(srcdir) -name '*.vcproj' -o -name '*.vcxproj') michael@0: michael@0: WINDOWS_UPDATEFILES_SED=config/windows-update.sed michael@0: michael@0: update-windows-makefiles: config.status michael@0: @echo Updating Windows Makefiles for ICU $(VERSION) michael@0: CONFIG_FILES=$(WINDOWS_UPDATEFILES_SED) CONFIG_HEADERS= $(SHELL) ./config.status michael@0: @for file in $(WINDOWS_UPDATEFILES); do \ michael@0: echo "Updating $$file"; \ michael@0: mv "$${file}" "$${file}.bak" && \ michael@0: sed -f $(WINDOWS_UPDATEFILES_SED) < "$${file}.bak" > "$${file}" && \ michael@0: rm "$${file}.bak"; \ michael@0: done; michael@0: $(RMV) $(WINDOWS_UPDATEFILES_SED) michael@0: @echo Please check over the changes carefully before checking them in. michael@0: michael@0: # For building a source distribution. michael@0: distcheck dist-local: michael@0: $(MAKE) -C . -f $(top_srcdir)/config/dist.mk srcdir="$(srcdir)" top_srcdir="$(top_srcdir)" $@ michael@0: michael@0: ifeq ($(DESTDIR),) michael@0: releaseDist: michael@0: @echo "Please provide DESTDIR when calling the target releaseDist." michael@0: else michael@0: releaseDist: install michael@0: @echo -n "ICU Version: " > $(DESTDIR)/readme.txt michael@0: @echo `./config/icu-config --noverify --version` >> $(DESTDIR)/readme.txt michael@0: @echo -n "HOST: " >> $(DESTDIR)/readme.txt michael@0: @echo `./config/icu-config --noverify --host` >> $(DESTDIR)/readme.txt michael@0: @echo -n "CC Compiler: " >> $(DESTDIR)/readme.txt michael@0: @echo `./config/icu-config --noverify --cc` >> $(DESTDIR)/readme.txt michael@0: @echo -n "CXX Compiler: " >> $(DESTDIR)/readme.txt michael@0: @echo `./config/icu-config --noverify --cxx` >> $(DESTDIR)/readme.txt michael@0: endif michael@0: michael@0: check-installed-icu: install michael@0: @echo "Testing ICU installed in $(prefix)" michael@0: $(INSTALLED_INVOKE) $(bindir)/icuinfo$(EXEEXT) michael@0: $(INSTALLED_INVOKE) $(bindir)/uconv$(EXEEXT) -V michael@0: $(INSTALLED_INVOKE) $(bindir)/genrb$(EXEEXT) -V michael@0: $(INSTALLED_INVOKE) $(bindir)/gencnval$(EXEEXT) -h michael@0: @echo INSTALLED ICU IN "$(prefix)" OK!