ICU-692 factor in some common definitions, and include the platform
file to make porting easier. X-SVN-Rev: 2772
This commit is contained in:
parent
8a4e1dc058
commit
8e28da7d3d
1
.gitignore
vendored
1
.gitignore
vendored
@ -55,6 +55,7 @@ icu4c/source/i18n/Debug
|
||||
icu4c/source/i18n/Makefile
|
||||
icu4c/source/i18n/Release
|
||||
icu4c/source/i18n/libicu*.*
|
||||
icu4c/source/icudefs.mk
|
||||
icu4c/source/samples/Makefile
|
||||
icu4c/source/samples/XMLConverter/*.d
|
||||
icu4c/source/samples/XMLConverter/*.pdb
|
||||
|
@ -2,3 +2,5 @@ config.log
|
||||
config.cache
|
||||
config.status
|
||||
Makefile
|
||||
icudefs.mk
|
||||
|
||||
|
@ -7,48 +7,21 @@
|
||||
## 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@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Build directory information
|
||||
top_builddir = .
|
||||
subdir = .
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
##
|
||||
|
||||
AUTOCONF = @AUTOCONF@
|
||||
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
|
||||
## Package information
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Optional directory setup
|
||||
@EXTRAS_TRUE@EXTRA = extra
|
||||
@ -99,7 +72,7 @@ all-recursive install-recursive clean-recursive distclean-recursive dist-recursi
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $$local_target) || exit; \
|
||||
(cd $$subdir && $(MAKE) RECURSIVE=YES $$local_target) || exit; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) "$$target-local" || exit; \
|
||||
@ -108,15 +81,17 @@ all-recursive install-recursive clean-recursive distclean-recursive dist-recursi
|
||||
clean-recursive-with-twist:
|
||||
$(MAKE) clean-recursive LOCAL_SUBDIRS='$(CLEAN_FIRST_SUBDIRS) $(filter-out $(CLEAN_FIRST_SUBDIRS),$(LOCAL_SUBDIRS))'
|
||||
|
||||
all-local: $(srcdir)/configure
|
||||
all-local: $(srcdir)/configure $(srcdir)/icudefs.mk
|
||||
|
||||
install-local: $(top_builddir)/config/Makefile.inc $(EXTRA_DATA:%=$(DESTDIR)$(pkgdatadir)/$(VERSION)/%)
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(pkgdatadir)
|
||||
install-local: $(top_builddir)/config/Makefile.inc @platform_make_fragment@ $(EXTRA_DATA:%=$(DESTDIR)$(pkglibdir)/$(VERSION)/%)
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(pkgdatadir)/config
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir)
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
|
||||
$(INSTALL_DATA) $(top_builddir)/config/Makefile.inc $(DESTDIR)$(pkgdatadir)/Makefile.inc
|
||||
$(INSTALL_DATA) $(top_builddir)/config/Makefile.inc $(DESTDIR)$(pkglibdir)/Makefile.inc
|
||||
$(INSTALL_DATA) @platform_make_fragment@ $(DESTDIR)$(pkgdatadir)/config/@platform_make_fragment_name@
|
||||
$(INSTALL_SCRIPT) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(pkgdatadir)/mkinstalldirs
|
||||
|
||||
$(DESTDIR)$(pkgdatadir)/$(VERSION)/%: $(top_srcdir)/../data/%
|
||||
$(DESTDIR)$(pkglibdir)/$(VERSION)/%: $(top_srcdir)/../data/%
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
## Generate HTML documentation
|
||||
@ -138,8 +113,9 @@ clean-local:
|
||||
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
||||
|
||||
distclean-local: clean-local
|
||||
$(RMV) Makefile config.cache config.log config.status config/Makefile
|
||||
$(RMV) Makefile icudefs.mk config/Makefile
|
||||
$(RMV) $(top_builddir)/config/Makefile.inc
|
||||
$(RMV) config.cache config.log config.status
|
||||
$(RMV) common/unicode/platform.h common/icucfg.h
|
||||
|
||||
check-local:
|
||||
@ -147,7 +123,11 @@ check-local:
|
||||
#$(srcdir)/configure : $(srcdir)/configure.in $(top_srcdir)/aclocal.m4
|
||||
# cd $(srcdir) && $(AUTOCONF)
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
icudefs.mk: $(srcdir)/icudefs.mk.in $(top_builddir)/config.status
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(srcdir)/icudefs.mk $(top_builddir)/config.status
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
32
icu4c/source/aclocal.m4
vendored
32
icu4c/source/aclocal.m4
vendored
@ -14,33 +14,33 @@ AC_DEFUN(ICU_CHECK_MH_FRAG, [
|
||||
case "${host}" in
|
||||
*-*-solaris*)
|
||||
if test "$ac_cv_prog_gcc" = yes; then
|
||||
icu_cv_host_frag=$srcdir/config/mh-solaris-gcc
|
||||
icu_cv_host_frag=mh-solaris-gcc
|
||||
else
|
||||
if test "$SOL64" = yes; then
|
||||
icu_cv_host_frag=$srcdir/config/mh-solaris-sparcv9
|
||||
icu_cv_host_frag=mh-solaris-sparcv9
|
||||
else
|
||||
icu_cv_host_frag=$srcdir/config/mh-solaris
|
||||
icu_cv_host_frag=mh-solaris
|
||||
fi
|
||||
fi ;;
|
||||
*-*-mips*) icu_cv_host_frag=$srcdir/config/mh-irix ;;
|
||||
*-*-linux*) icu_cv_host_frag=$srcdir/config/mh-linux ;;
|
||||
*-*-freebsd*|*-*-netbsd*) icu_cv_host_frag=$srcdir/config/mh-bsd-gcc ;;
|
||||
*-*-mips*) icu_cv_host_frag=mh-irix ;;
|
||||
*-*-linux*) icu_cv_host_frag=mh-linux ;;
|
||||
*-*-freebsd*|*-*-netbsd*) icu_cv_host_frag=mh-bsd-gcc ;;
|
||||
*-*-aix*)
|
||||
case "$CXX" in
|
||||
*vacpp*)icu_cv_host_frag=$srcdir/config/mh-aix-va ;;
|
||||
*) icu_cv_host_frag=$srcdir/config/mh-aix ;;
|
||||
*vacpp*)icu_cv_host_frag=mh-aix-va ;;
|
||||
*) icu_cv_host_frag=mh-aix ;;
|
||||
esac;;
|
||||
*-sequent-*) icu_cv_host_frag=$srcdir/config/mh-ptx ;;
|
||||
*-sequent-*) icu_cv_host_frag=mh-ptx ;;
|
||||
*-*-hpux*)
|
||||
case "$CXX" in
|
||||
*aCC) icu_cv_host_frag=$srcdir/config/mh-hpux-acc ;;
|
||||
*CC) icu_cv_host_frag=$srcdir/config/mh-hpux-cc ;;
|
||||
*aCC) icu_cv_host_frag=mh-hpux-acc ;;
|
||||
*CC) icu_cv_host_frag=mh-hpux-cc ;;
|
||||
esac;;
|
||||
*-*-os390*) icu_cv_host_frag=$srcdir/config/mh-os390 ;;
|
||||
*-*-os400*) icu_cv_host_frag=$srcdir/config/mh-os400 ;;
|
||||
*-apple-rhapsody*) icu_cv_host_frag=$srcdir/config/mh-darwin ;;
|
||||
*-apple-darwin*) icu_cv_host_frag=$srcdir/config/mh-darwin ;;
|
||||
*) icu_cv_host_frag=$srcdir/config/mh-unknown ;;
|
||||
*-*-os390*) icu_cv_host_frag=mh-os390 ;;
|
||||
*-*-os400*) icu_cv_host_frag=mh-os400 ;;
|
||||
*-apple-rhapsody*) icu_cv_host_frag=mh-darwin ;;
|
||||
*-apple-darwin*) icu_cv_host_frag=mh-darwin ;;
|
||||
*) icu_cv_host_frag=mh-unknown ;;
|
||||
esac
|
||||
]
|
||||
)
|
||||
|
@ -7,42 +7,17 @@
|
||||
## Makefile.in for ICU - icu.so
|
||||
## Stephen F. Booth
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
SO_TARGET_VERSION = @LIB_VERSION@
|
||||
SO_TARGET_VERSION_MAJOR = @LIB_VERSION_MAJOR@
|
||||
|
||||
## 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
SO_TARGET_VERSION = @LIB_VERSION@
|
||||
SO_TARGET_VERSION_MAJOR = @LIB_VERSION_MAJOR@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ..
|
||||
|
@ -2,12 +2,11 @@
|
||||
#******************************************************************************
|
||||
# Copyright (C) 1999, International Business Machines
|
||||
# Corporation and others. All Rights Reserved.
|
||||
# $Revision: 1.14 $
|
||||
# $Revision: 1.15 $
|
||||
#******************************************************************************
|
||||
# This Makefile is designed to be included into projects which make use
|
||||
# of the ICU.
|
||||
|
||||
|
||||
SHELL = @SHELL@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPPFLAGS = @CPPFLAGS@ $(LIBCPPFLAGS) -I$(prefix)/include
|
||||
@ -53,7 +52,10 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
|
||||
MKINSTALLDIRS = $(SHELL) $(datadir)/$(PACKAGE)/mkinstalldirs
|
||||
pkgdatadir = $(datadir)/$(PACKAGE)
|
||||
pkglibdir = $(libdir)/$(PACKAGE)
|
||||
|
||||
MKINSTALLDIRS = $(SHELL) $(pkgdatadir)/mkinstalldirs
|
||||
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
@ -83,9 +85,7 @@ platform = @platform@
|
||||
|
||||
ld_rpath_suf = @ld_rpath_suf@
|
||||
|
||||
# begin host fragment
|
||||
@host_frag@
|
||||
# end host fragment
|
||||
include $(pkgdatadir)/config/@platform_make_fragment_name@
|
||||
|
||||
DEFAULT_MODE = @DATA_PACKAGING_MODE@
|
||||
|
||||
|
44
icu4c/source/configure
vendored
44
icu4c/source/configure
vendored
@ -1215,33 +1215,33 @@ else
|
||||
case "${host}" in
|
||||
*-*-solaris*)
|
||||
if test "$ac_cv_prog_gcc" = yes; then
|
||||
icu_cv_host_frag=$srcdir/config/mh-solaris-gcc
|
||||
icu_cv_host_frag=mh-solaris-gcc
|
||||
else
|
||||
if test "$SOL64" = yes; then
|
||||
icu_cv_host_frag=$srcdir/config/mh-solaris-sparcv9
|
||||
icu_cv_host_frag=mh-solaris-sparcv9
|
||||
else
|
||||
icu_cv_host_frag=$srcdir/config/mh-solaris
|
||||
icu_cv_host_frag=mh-solaris
|
||||
fi
|
||||
fi ;;
|
||||
*-*-mips*) icu_cv_host_frag=$srcdir/config/mh-irix ;;
|
||||
*-*-linux*) icu_cv_host_frag=$srcdir/config/mh-linux ;;
|
||||
*-*-freebsd*|*-*-netbsd*) icu_cv_host_frag=$srcdir/config/mh-bsd-gcc ;;
|
||||
*-*-mips*) icu_cv_host_frag=mh-irix ;;
|
||||
*-*-linux*) icu_cv_host_frag=mh-linux ;;
|
||||
*-*-freebsd*|*-*-netbsd*) icu_cv_host_frag=mh-bsd-gcc ;;
|
||||
*-*-aix*)
|
||||
case "$CXX" in
|
||||
*vacpp*)icu_cv_host_frag=$srcdir/config/mh-aix-va ;;
|
||||
*) icu_cv_host_frag=$srcdir/config/mh-aix ;;
|
||||
*vacpp*)icu_cv_host_frag=mh-aix-va ;;
|
||||
*) icu_cv_host_frag=mh-aix ;;
|
||||
esac;;
|
||||
*-sequent-*) icu_cv_host_frag=$srcdir/config/mh-ptx ;;
|
||||
*-sequent-*) icu_cv_host_frag=mh-ptx ;;
|
||||
*-*-hpux*)
|
||||
case "$CXX" in
|
||||
*aCC) icu_cv_host_frag=$srcdir/config/mh-hpux-acc ;;
|
||||
*CC) icu_cv_host_frag=$srcdir/config/mh-hpux-cc ;;
|
||||
*aCC) icu_cv_host_frag=mh-hpux-acc ;;
|
||||
*CC) icu_cv_host_frag=mh-hpux-cc ;;
|
||||
esac;;
|
||||
*-*-os390*) icu_cv_host_frag=$srcdir/config/mh-os390 ;;
|
||||
*-*-os400*) icu_cv_host_frag=$srcdir/config/mh-os400 ;;
|
||||
*-apple-rhapsody*) icu_cv_host_frag=$srcdir/config/mh-darwin ;;
|
||||
*-apple-darwin*) icu_cv_host_frag=$srcdir/config/mh-darwin ;;
|
||||
*) icu_cv_host_frag=$srcdir/config/mh-unknown ;;
|
||||
*-*-os390*) icu_cv_host_frag=mh-os390 ;;
|
||||
*-*-os400*) icu_cv_host_frag=mh-os400 ;;
|
||||
*-apple-rhapsody*) icu_cv_host_frag=mh-darwin ;;
|
||||
*-apple-darwin*) icu_cv_host_frag=mh-darwin ;;
|
||||
*) icu_cv_host_frag=mh-unknown ;;
|
||||
esac
|
||||
|
||||
|
||||
@ -3692,7 +3692,9 @@ case "${host}" in
|
||||
*) platform=U_UNKNOWN_PLATFORM ;;
|
||||
esac
|
||||
|
||||
host_frag=$icu_cv_host_frag
|
||||
platform_make_fragment_name="$icu_cv_host_frag"
|
||||
platform_make_fragment='$(top_srcdir)/config/'"$platform_make_fragment_name"
|
||||
|
||||
|
||||
|
||||
case "${host}" in
|
||||
@ -3855,7 +3857,7 @@ done
|
||||
ac_given_srcdir=$srcdir
|
||||
ac_given_INSTALL="$INSTALL"
|
||||
|
||||
trap 'rm -fr `echo "Makefile \
|
||||
trap 'rm -fr `echo "icudefs.mk Makefile \
|
||||
data/Makefile \
|
||||
common/Makefile config/Makefile.inc i18n/Makefile \
|
||||
extra/Makefile extra/ustdio/Makefile \
|
||||
@ -3963,8 +3965,8 @@ s%@TESTS_FALSE@%$TESTS_FALSE%g
|
||||
s%@SAMPLES_TRUE@%$SAMPLES_TRUE%g
|
||||
s%@SAMPLES_FALSE@%$SAMPLES_FALSE%g
|
||||
s%@platform@%$platform%g
|
||||
/@host_frag@/r $host_frag
|
||||
s%@host_frag@%%g
|
||||
s%@platform_make_fragment_name@%$platform_make_fragment_name%g
|
||||
s%@platform_make_fragment@%$platform_make_fragment%g
|
||||
s%@ld_rpath_suf@%$ld_rpath_suf%g
|
||||
|
||||
CEOF
|
||||
@ -4007,7 +4009,7 @@ EOF
|
||||
|
||||
cat >> $CONFIG_STATUS <<EOF
|
||||
|
||||
CONFIG_FILES=\${CONFIG_FILES-"Makefile \
|
||||
CONFIG_FILES=\${CONFIG_FILES-"icudefs.mk Makefile \
|
||||
data/Makefile \
|
||||
common/Makefile config/Makefile.inc i18n/Makefile \
|
||||
extra/Makefile extra/ustdio/Makefile \
|
||||
|
@ -4,7 +4,7 @@ dnl Copyright (c) 1999-2000, International Business Machines Corporation and
|
||||
dnl others. All Rights Reserved.
|
||||
dnl Stephen F. Booth, heavily modified by Yves and others
|
||||
|
||||
dnl $Id: configure.in,v 1.87 2000/10/20 06:17:23 yves Exp $
|
||||
dnl $Id: configure.in,v 1.88 2000/10/24 19:50:05 yves Exp $
|
||||
|
||||
dnl Process this file with autoconf to produce a configure script
|
||||
AC_INIT(common/unicode/utypes.h)
|
||||
@ -623,8 +623,10 @@ case "${host}" in
|
||||
*) platform=U_UNKNOWN_PLATFORM ;;
|
||||
esac
|
||||
AC_SUBST(platform)
|
||||
host_frag=$icu_cv_host_frag
|
||||
AC_SUBST_FILE(host_frag)
|
||||
platform_make_fragment_name="$icu_cv_host_frag"
|
||||
platform_make_fragment='$(top_srcdir)/config/'"$platform_make_fragment_name"
|
||||
AC_SUBST(platform_make_fragment_name)
|
||||
AC_SUBST(platform_make_fragment)
|
||||
|
||||
dnl Handle -rpath options for shared library paths
|
||||
case "${host}" in
|
||||
@ -695,7 +697,7 @@ if test "$ac_cv_func_dllload" = "yes"; then
|
||||
fi
|
||||
|
||||
dnl output the Makefiles
|
||||
AC_OUTPUT([Makefile \
|
||||
AC_OUTPUT([icudefs.mk Makefile \
|
||||
data/Makefile \
|
||||
common/Makefile config/Makefile.inc i18n/Makefile \
|
||||
extra/Makefile extra/ustdio/Makefile \
|
||||
|
@ -7,48 +7,18 @@
|
||||
## 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@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ..
|
||||
subdir = data
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
|
||||
AUTOCONF = @AUTOCONF@
|
||||
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
|
||||
## Pacakge information
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Optional directory setup
|
||||
@EXTRAS_TRUE@EXTRA = extra
|
||||
|
@ -78,10 +78,7 @@ platform=@platform@
|
||||
|
||||
ld_rpath_suf=@ld_rpath_suf@
|
||||
|
||||
|
||||
# begin host fragment
|
||||
@host_frag@
|
||||
# end host fragment
|
||||
include @platform_make_fragment@
|
||||
|
||||
top_builddir = ../..
|
||||
subdir = tools/tmp
|
||||
|
@ -7,45 +7,18 @@
|
||||
## Makefile.in for ICU extras
|
||||
## 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@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ..
|
||||
subdir = extra
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
|
||||
## Package information
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Files to remove for 'make clean'
|
||||
CLEANFILES = *~
|
||||
|
@ -78,10 +78,7 @@ platform=@platform@
|
||||
|
||||
ld_rpath_suf=@ld_rpath_suf@
|
||||
|
||||
|
||||
# begin host fragment
|
||||
@host_frag@
|
||||
# end host fragment
|
||||
include @platform_make_fragment@
|
||||
|
||||
top_builddir = ../..
|
||||
subdir = tools/tmp
|
||||
|
@ -7,42 +7,17 @@
|
||||
## Makefile.in for ICU - extra/ustdio/libustdio.so
|
||||
## Stephen F. Booth
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
SO_TARGET_VERSION = @LIB_VERSION@
|
||||
SO_TARGET_VERSION_MAJOR = @LIB_VERSION_MAJOR@
|
||||
|
||||
## 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
SO_TARGET_VERSION = @LIB_VERSION@
|
||||
SO_TARGET_VERSION_MAJOR = @LIB_VERSION_MAJOR@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
57
icu4c/source/icudefs.mk.in
Normal file
57
icu4c/source/icudefs.mk.in
Normal file
@ -0,0 +1,57 @@
|
||||
|
||||
# Make definitions that are shared by the different subprojects of ICU.
|
||||
#
|
||||
# Yves Arrouye.
|
||||
#
|
||||
# Copyright (C) 2000, International Business Machines Corporation and others.
|
||||
# All Rights Reserved.
|
||||
|
||||
# Shell to use
|
||||
|
||||
SHELL = @SHELL@
|
||||
|
||||
# Standard directories
|
||||
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
datadir = @datadir@
|
||||
libdir = @libdir@
|
||||
includedir = @includedir@
|
||||
mandir = @mandir@
|
||||
sysconfdir = @sysconfdir@
|
||||
|
||||
# Package information
|
||||
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
|
||||
# ICU specific directories
|
||||
|
||||
pkgdatadir = $(datadir)/$(PACKAGE)
|
||||
#pkglibdir = $(libdir)/$(PACKAGE)
|
||||
pkglibdir = $(datadir)/$(PACKAGE)
|
||||
pkgsysconfdir = $(sysconfdir)/$(PACKAGE)
|
||||
|
||||
# Installation programs
|
||||
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
|
||||
# Compiler and tools
|
||||
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
|
||||
# Echo w/o newline
|
||||
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_C = @ECHO_C@
|
||||
|
@ -2,45 +2,18 @@
|
||||
## Copyright (c) 1999-2000, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## 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@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ..
|
||||
subdir = samples
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
|
||||
## Package information
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Files to remove for 'make clean'
|
||||
CLEANFILES = *~
|
||||
|
@ -2,40 +2,14 @@
|
||||
## Copyright (c) 1999-2000, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -2,40 +2,14 @@
|
||||
## Copyright (c) 1999-2000, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -2,40 +2,14 @@
|
||||
## Copyright (c) 1999-2000, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -2,47 +2,19 @@
|
||||
## Copyright (c) 1999, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
datadir = @datadir@
|
||||
libdir = @libdir@
|
||||
includedir = @includedir@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
## Platform-specific setup
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ..
|
||||
subdir = test
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
|
||||
## Package information
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
|
||||
## Files to remove for 'make clean'
|
||||
CLEANFILES = *~
|
||||
|
||||
@ -60,7 +32,9 @@ check check-recursive check-local
|
||||
## List of standard targets
|
||||
everything: all-recursive all-local
|
||||
all:
|
||||
ifneq ($(RECURSIVE),YES)
|
||||
@echo simply use \`make\' \(or \`make everything\'\) to do all
|
||||
endif
|
||||
|
||||
install: install-recursive install-local
|
||||
clean: clean-recursive clean-local
|
||||
|
@ -2,43 +2,14 @@
|
||||
## Copyright (c) 1999, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -2,40 +2,14 @@
|
||||
## Copyright (c) 1999, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -2,40 +2,14 @@
|
||||
## Copyright (c) 1999, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
38
icu4c/source/test/testdata/Makefile.in
vendored
38
icu4c/source/test/testdata/Makefile.in
vendored
@ -7,49 +7,19 @@
|
||||
## Top-level Makefile.in for ICU
|
||||
## Stephen F. Booth
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
datadir = @datadir@
|
||||
libdir = @libdir@
|
||||
includedir = @includedir@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
## Platform-specific setup
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = test/testdata
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
|
||||
AUTOCONF = @AUTOCONF@
|
||||
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
|
||||
## Pacakge information
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
|
||||
## Optional directory setup
|
||||
@EXTRAS_TRUE@EXTRA = extra
|
||||
@EXTRAS_FALSE@EXTRA =
|
||||
|
@ -2,42 +2,14 @@
|
||||
## Copyright (c) 1999, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -2,37 +2,20 @@
|
||||
## Copyright (c) 1999-2000, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
VERSION = @VERSION@
|
||||
|
||||
## Install directory information
|
||||
## Source directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
include @platform_make_fragment@
|
||||
|
||||
##
|
||||
|
||||
CPPFLAGS = @CPPFLAGS@ -I$(top_srcdir)/common -I$(top_builddir)/common
|
||||
CFLAGS = @CFLAGS@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
|
||||
@host_frag@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
datadir = @datadir@
|
||||
libdir = @libdir@
|
||||
includedir = @includedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkgsysconfdir = $(sysconfdir)/@PACKAGE@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ..
|
||||
subdir = tools
|
||||
@ -44,7 +27,6 @@ endif
|
||||
|
||||
# OBJDATADIR must be a short path (with ..'s) to the data.
|
||||
|
||||
ICUDATADIR=$(pkgdatadir)/$(VERSION)
|
||||
#SRCDATADIR=$(shell cd $(top_srcdir)/../data && /bin/pwd)
|
||||
SRCDATADIR=$(top_srcdir)/../data
|
||||
|
||||
@ -217,9 +199,8 @@ build-local build-pkgdata: $(TMPDATADIR)/icudata.lst $(TMPDATADIR)/testdata.lst
|
||||
(cd $(TMPDATADIR)2; $(INVOKE) $(PKGDATA) -p testdat2 ./testdata.lst )
|
||||
|
||||
install-pkgdata: $(TMPDATADIR)/icudata.lst $(TMPDATADIR)/icupkg.inc
|
||||
$(MKINSTALLDIRS) $(TMPDATADIR) $(DESTDIR)$(pkgdatadir)/$(VERSION)
|
||||
(cd $(TMPDATADIR); $(INVOKE) $(PKGDATA) -p icudata ./icudata.lst -I $(DESTDIR)$(pkgdatadir)/$(VERSION) )
|
||||
|
||||
$(MKINSTALLDIRS) $(TMPDATADIR) $(DESTDIR)$(pkglibdir)/$(VERSION)
|
||||
(cd $(TMPDATADIR); $(INVOKE) $(PKGDATA) -p icudata ./icudata.lst -I $(DESTDIR)$(pkglibdir)/$(VERSION))
|
||||
|
||||
clean-pkgdata:
|
||||
-(cd $(TMPDATADIR); $(INVOKE) $(PKGDATA) -p icudata ./icudata.lst --clean || echo '### Warning, cannot clean up icu/data if pkgdata is already gone.' )
|
||||
|
@ -3,41 +3,14 @@
|
||||
## others. All Rights Reserved.
|
||||
## Stephen F. Booth
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CPPFLAGS = @CPPFLAGS@ -I.
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -3,40 +3,14 @@
|
||||
## others. All Rights Reserved.
|
||||
## Steven R. Loomi
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -3,40 +3,14 @@
|
||||
## others. All Rights Reserved.
|
||||
## Steven R. Loomi
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -3,9 +3,20 @@
|
||||
## others. All Rights Reserved.
|
||||
## Steven R. Loomi
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
VERSION = @VERSION@
|
||||
## Install directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/gencnval
|
||||
|
||||
##
|
||||
|
||||
SECTION = 8
|
||||
|
||||
@ -19,43 +30,6 @@ ALL_MAN_FILES = $(MANX_FILES) $(MAN5_FILES)
|
||||
ICUDATADIR=$(top_builddir)/data/
|
||||
CONVRTRSFILE=$(top_srcdir)/../data/convrtrs.txt
|
||||
|
||||
## Install directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
datadir = @datadir@
|
||||
libdir = @libdir@
|
||||
mandir = @mandir@
|
||||
includedir = @includedir@
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/gencnval
|
||||
|
||||
## Extra files to remove for 'make clean'
|
||||
CLEANFILES = *~ $(GENERATED_MAN_FILES) $(DEPS) $(RES_FILES) $(TEST_FILES)
|
||||
|
||||
|
@ -3,51 +3,23 @@
|
||||
## others. All Rights Reserved.
|
||||
## Steven R. Loomi
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
VERSION = @VERSION@
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
|
||||
ICUDATADIR=$(top_builddir)/data/
|
||||
UNICODEDATADIR=$(top_srcdir)/../data/unidata
|
||||
UNICODEFILE=$(UNICODEDATADIR)/UnicodeData.txt
|
||||
|
||||
## 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/gennames
|
||||
|
||||
ICUDATADIR=$(top_builddir)/data/
|
||||
UNICODEDATADIR=$(top_srcdir)/../data/unidata
|
||||
UNICODEFILE=$(UNICODEDATADIR)/UnicodeData.txt
|
||||
|
||||
## Extra files to remove for 'make clean'
|
||||
CLEANFILES = *~ $(DEPS) $(RES_FILES) $(TEST_FILES)
|
||||
|
||||
|
@ -3,50 +3,24 @@
|
||||
## others. All Rights Reserved.
|
||||
## Steven R. Loomis
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
VERSION = @VERSION@
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
|
||||
ICUDATADIR=$(top_builddir)/data
|
||||
UNICODEDATADIR=$(top_srcdir)/../data/unidata
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
##
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/genprops
|
||||
|
||||
ICUDATADIR=$(top_builddir)/data
|
||||
UNICODEDATADIR=$(top_srcdir)/../data/unidata
|
||||
|
||||
## Extra files to remove for 'make clean'
|
||||
CLEANFILES = *~ $(DEPS) $(RES_FILES) $(TEST_FILES)
|
||||
|
||||
|
@ -2,46 +2,22 @@
|
||||
## Copyright (c) 1999, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
mandir = @mandir@
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
datadir = @datadir@
|
||||
libdir = @libdir@
|
||||
includedir = @includedir@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
## Platform-specific setup
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
include @platform_make_fragment@
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
##
|
||||
|
||||
SECTION = 8
|
||||
|
||||
MAN_FILES = $(TARGET).$(SECTION)
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/genrb
|
||||
|
@ -4,49 +4,23 @@
|
||||
## others. All Rights Reserved.
|
||||
## Madhu Katragadda
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
VERSION = @VERSION@
|
||||
UNICODE_VERSION = @UNICODE_VERSION@
|
||||
|
||||
ICUDATADIR=$(top_builddir)/data
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/gentest
|
||||
|
||||
##
|
||||
|
||||
ICUDATADIR=$(top_builddir)/data
|
||||
|
||||
## Extra files to remove for 'make clean'
|
||||
CLEANFILES = *~ $(DEPS) $(RES_FILES) $(TEST_FILES)
|
||||
|
||||
|
@ -3,50 +3,24 @@
|
||||
## others. All Rights Reserved.
|
||||
## Steven R. Loomi
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
VERSION = @VERSION@
|
||||
|
||||
ICUDATADIR=$(top_builddir)/data/
|
||||
TZFILE=$(srcdir)/tz.txt
|
||||
TZALIAS=$(srcdir)/tz.alias
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/gentz
|
||||
|
||||
##
|
||||
ICUDATADIR=$(top_builddir)/data/
|
||||
TZFILE=$(srcdir)/tz.txt
|
||||
TZALIAS=$(srcdir)/tz.alias
|
||||
|
||||
## Extra files to remove for 'make clean'
|
||||
CLEANFILES = *~ $(DEPS) $(RES_FILES) $(TEST_FILES)
|
||||
|
||||
|
@ -1,9 +1,16 @@
|
||||
## Makefile.in for ICU - tools/makeconv
|
||||
## Stephen F. Booth
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
VERSION = @VERSION@
|
||||
## Source directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
include @platform_make_fragment@
|
||||
|
||||
##
|
||||
|
||||
SECTION = 8
|
||||
|
||||
@ -13,47 +20,10 @@ GENERATED_MAN_FILES = $(TARGET).$(SECTION)
|
||||
|
||||
ALL_MAN_FILES = $(MANX_FILES)
|
||||
|
||||
## Install directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
datadir = @datadir@
|
||||
libdir = @libdir@
|
||||
mandir = @mandir@
|
||||
includedir = @includedir@
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
|
||||
## List of converter tables to build
|
||||
include $(srcdir)/ucmfiles.mk
|
||||
-include $(srcdir)/ucmlocal.mk
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Echo w/o newline
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_C = @ECHO_C@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
subdir = tools/makeconv
|
||||
@ -117,10 +87,10 @@ all-local: $(TARGET) $(CNV_FILES) $(TEST_CNV_FILES) $(ALL_MAN_FILES)
|
||||
install-local: all-local install-man
|
||||
$(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
|
||||
$(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)/$(TARGET)
|
||||
# $(MKINSTALLDIRS) $(DESTDIR)$(pkgdatadir)/$(VERSION)
|
||||
# $(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir)/$(VERSION)
|
||||
# @list='$(notdir $(CNV_FILES)) convrtrs.txt'; for file in $$list; do \
|
||||
# echo $(INSTALL_DATA) $(top_builddir)/data/$$file $(DESTDIR)$(pkgdatadir)/$(VERSION)/$$file; \
|
||||
# $(INSTALL_DATA) $(top_builddir)/data/$$file $(DESTDIR)$(pkgdatadir)/$(VERSION)/$$file; \
|
||||
# echo $(INSTALL_DATA) $(top_builddir)/data/$$file $(DESTDIR)$(pkglibdir)/$(VERSION)/$$file; \
|
||||
# $(INSTALL_DATA) $(top_builddir)/data/$$file $(DESTDIR)$(pkglibdir)/$(VERSION)/$$file; \
|
||||
# done
|
||||
|
||||
dist-local:
|
||||
|
@ -3,40 +3,14 @@
|
||||
## others. All Rights Reserved.
|
||||
## Steven R. Loomis
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -78,10 +78,7 @@ platform=@platform@
|
||||
|
||||
ld_rpath_suf=@ld_rpath_suf@
|
||||
|
||||
|
||||
# begin host fragment
|
||||
@host_frag@
|
||||
# end host fragment
|
||||
include @platform_make_fragment@
|
||||
|
||||
top_builddir = ../..
|
||||
subdir = tools/tmp
|
||||
|
@ -1,40 +1,14 @@
|
||||
## Makefile.in for ICU - tools/rbdump
|
||||
## Stephen F. Booth
|
||||
|
||||
## Shell to use
|
||||
SHELL = @SHELL@
|
||||
|
||||
## Install directory information
|
||||
## Source 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
@ -1,42 +1,17 @@
|
||||
## Makefile.in for ICU - tools/toolutil
|
||||
## Steven R. Loomis
|
||||
|
||||
## 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@
|
||||
|
||||
## Install program information
|
||||
MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
|
||||
## Compiler/tools information
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
SO_TARGET_VERSION = @LIB_VERSION@
|
||||
SO_TARGET_VERSION_MAJOR = @LIB_VERSION_MAJOR@
|
||||
|
||||
## Source directory information
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
||||
include $(top_srcdir)/icudefs.mk
|
||||
|
||||
## Platform-specific setup
|
||||
@host_frag@
|
||||
include @platform_make_fragment@
|
||||
|
||||
## Build directory information
|
||||
top_builddir = ../..
|
||||
|
Loading…
Reference in New Issue
Block a user