2000-01-14 16:20:17 +00:00
|
|
|
#******************************************************************************
|
|
|
|
#
|
|
|
|
# Copyright (C) 1998-2000, International Business Machines
|
|
|
|
# Corporation and others. All Rights Reserved.
|
|
|
|
#
|
|
|
|
#******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
## Top-level Makefile.in for ICU
|
|
|
|
## Stephen F. Booth
|
|
|
|
|
|
|
|
## Shell to use
|
|
|
|
SHELL = @SHELL@
|
|
|
|
|
|
|
|
## Install directory information
|
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
|
|
|
|
bindir = @bindir@
|
|
|
|
sbindir = @sbindir@
|
|
|
|
datadir = @datadir@
|
|
|
|
libdir = @libdir@
|
|
|
|
includedir = @includedir@
|
|
|
|
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
|
|
pkglibdir = $(libdir)/@PACKAGE@
|
|
|
|
pkgincludedir = $(includedir)/@PACKAGE@
|
|
|
|
|
|
|
|
## Build directory information
|
|
|
|
top_builddir = .
|
|
|
|
|
|
|
|
## Install program information
|
|
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
|
|
|
|
|
|
AUTOCONF = @AUTOCONF@
|
|
|
|
|
|
|
|
## Pacakge information
|
|
|
|
PACKAGE = @PACKAGE@
|
|
|
|
VERSION = @VERSION@
|
1999-11-23 04:49:35 +00:00
|
|
|
UNICODE_VERSION = @UNICODE_VERSION@
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## Optional directory setup
|
|
|
|
@EXTRAS_TRUE@EXTRA = extra
|
|
|
|
@EXTRAS_FALSE@EXTRA =
|
|
|
|
@TESTS_TRUE@TEST = test
|
|
|
|
@TESTS_FALSE@TEST =
|
|
|
|
@SAMPLES_TRUE@SAMPLE = samples
|
|
|
|
@SAMPLES_FALSE@SAMPLE =
|
|
|
|
|
|
|
|
## Files to remove for 'make clean'
|
1999-12-04 02:53:39 +00:00
|
|
|
CLEANFILES = *~
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
DOCDIRS = common i18n
|
|
|
|
SUBDIRS = common i18n $(EXTRA) tools $(TEST) $(SAMPLE)
|
|
|
|
|
|
|
|
## Extra files to install
|
1999-11-23 04:49:35 +00:00
|
|
|
EXTRA_DATA = convrtrs.txt UnicodeData-$(UNICODE_VERSION).txt
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## List of phony targets
|
1999-11-23 04:49:35 +00:00
|
|
|
.PHONY : all all-local all-recursive install install-local install-udata install-udata-files install-udata-dlls \
|
1999-08-16 21:50:52 +00:00
|
|
|
install-recursive clean clean-local clean-recursive distclean \
|
|
|
|
distclean-local distclean-recursive doc dist dist-local dist-recursive \
|
2000-02-16 22:38:38 +00:00
|
|
|
check check-local check-recursive builddata
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## Clear suffix list
|
|
|
|
.SUFFIXES :
|
|
|
|
|
|
|
|
## List of standard targets
|
|
|
|
all: all-recursive all-local
|
|
|
|
install: install-recursive install-local
|
|
|
|
clean: clean-recursive clean-local
|
|
|
|
distclean : distclean-recursive distclean-local
|
|
|
|
dist: dist-recursive dist-local
|
|
|
|
check: check-recursive check-local
|
|
|
|
|
|
|
|
## Recursive targets
|
|
|
|
all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
|
|
|
|
@dot_seen=no; \
|
|
|
|
target=`echo $@ | sed s/-recursive//`; \
|
|
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
|
|
echo "Making $$target in $$subdir"; \
|
|
|
|
if test "$$subdir" = "."; then \
|
|
|
|
dot_seen=yes; \
|
|
|
|
local_target="$$target-local"; \
|
|
|
|
else \
|
|
|
|
local_target="$$target"; \
|
|
|
|
fi; \
|
2000-02-04 22:34:43 +00:00
|
|
|
(cd $$subdir && $(MAKE) $$local_target) || exit; \
|
1999-08-16 21:50:52 +00:00
|
|
|
done; \
|
|
|
|
if test "$$dot_seen" = "no"; then \
|
|
|
|
$(MAKE) "$$target-local" || exit 1; \
|
|
|
|
fi
|
|
|
|
|
2000-02-16 22:38:38 +00:00
|
|
|
all-local: $(srcdir)/configure builddata
|
1999-11-23 04:49:35 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
install-local:
|
|
|
|
@for file in $(EXTRA_DATA); do \
|
2000-03-10 22:55:19 +00:00
|
|
|
echo $(INSTALL_DATA) $(top_srcdir)/../data/$$file $(DESTDIR)$(pkgdatadir)/$(VERSION)/$$file; \
|
|
|
|
$(INSTALL_DATA) $(top_srcdir)/../data/$$file $(DESTDIR)$(pkgdatadir)/$(VERSION)/$$file || exit; \
|
1999-08-16 21:50:52 +00:00
|
|
|
done
|
2000-03-10 22:55:19 +00:00
|
|
|
$(INSTALL_DATA) $(top_builddir)/config/Makefile $(DESTDIR)$(pkgdatadir)/Makefile.inc
|
|
|
|
$(INSTALL_SCRIPT) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)/mkinstalldirs
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## Generate HTML documentation
|
|
|
|
doc:
|
1999-09-30 23:47:52 +00:00
|
|
|
@uniq=`date '+%y%m%d9/30/99M%S'`; \
|
1999-08-16 21:50:52 +00:00
|
|
|
tmpdir="/tmp/icu-$$uniq"; \
|
|
|
|
list='$(DOCDIRS)'; for subdir in $$list; do \
|
|
|
|
echo "Making install-headers in $$subdir"; \
|
|
|
|
(cd $$subdir && \
|
|
|
|
$(MAKE) includedir=$$tmpdir/include install-headers); \
|
|
|
|
done; \
|
|
|
|
echo "Generating html documentation..."; \
|
|
|
|
doc++ -H -d $$tmpdir/html $$tmpdir/include/*.h > /dev/null 2>&1; \
|
|
|
|
rm -rf $$tmpdir
|
|
|
|
|
|
|
|
dist-local:
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
|
|
|
|
|
|
|
distclean-local:
|
1999-12-04 02:53:39 +00:00
|
|
|
rm -f Makefile config.cache config.log config.status config/Makefile
|
2000-01-06 20:14:26 +00:00
|
|
|
rm -f common/unicode/platform.h common/icucfg.h
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
check-local:
|
|
|
|
|
2000-01-12 01:01:46 +00:00
|
|
|
#$(srcdir)/configure : $(srcdir)/configure.in $(top_srcdir)/aclocal.m4
|
|
|
|
# cd $(srcdir) && $(AUTOCONF)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
|
|
cd $(top_builddir) \
|
|
|
|
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
|
|
|
|
config.status: $(srcdir)/configure
|
|
|
|
$(SHELL) ./config.status --recheck
|
2000-02-16 22:38:38 +00:00
|
|
|
|
|
|
|
builddata: @DATABUILDDIR@/UnicodeData-$(UNICODE_VERSION).txt @DATABUILDDIR@/thaidict.brk @DATABUILDDIR@/../source/test/testdata/default.goo
|
|
|
|
|
|
|
|
@DATABUILDDIR@/UnicodeData-$(UNICODE_VERSION).txt: $(srcdir)/../data/UnicodeData-$(UNICODE_VERSION).txt
|
|
|
|
ln -s `pwd`/$< @DATABUILDDIR@
|
|
|
|
|
|
|
|
@DATABUILDDIR@/thaidict.brk: $(srcdir)/../data/thaidict.brk
|
|
|
|
ln -s `pwd`/$< @DATABUILDDIR@
|
|
|
|
|
|
|
|
@DATABUILDDIR@/../source/test/testdata/default.goo: $(srcdir)/test/testdata/default.goo
|
|
|
|
ln -s `pwd`/$(srcdir)/test/testdata/*.goo `pwd`/$(srcdir)/test/testdata/*.txt `pwd`/$(srcdir)/test/testdata/*.uni @DATABUILDDIR@/../source/test/testdata/
|
|
|
|
|
|
|
|
|