00001 00002 # Make definitions that are shared by the different subprojects of ICU. 00003 # 00004 # Yves Arrouye. 00005 # 00006 # Copyright (C) 2000, International Business Machines Corporation and others. 00007 # All Rights Reserved. 00008 00009 # Shell to use 00010 00011 SHELL = /bin/sh 00012 00013 # Standard directories 00014 00015 prefix = /usr/local 00016 exec_prefix = ${prefix} 00017 00018 bindir = ${exec_prefix}/bin 00019 sbindir = ${exec_prefix}/sbin 00020 datadir = ${prefix}/share 00021 libdir = ${exec_prefix}/lib 00022 includedir = ${prefix}/include 00023 mandir = ${prefix}/man 00024 sysconfdir = ${prefix}/etc 00025 00026 # Package information 00027 00028 PACKAGE = icu 00029 VERSION = 1.7 00030 UNICODE_VERSION = 3.0.0 00031 00032 # Should be the same as U_ICUDATA_NAME 00033 ICUDATA_NAME = icudt17l 00034 ifeq ($(strip $(PKGDATA_MODE)),) 00035 PKGDATA_MODE=dll 00036 endif 00037 ifeq ($(PKGDATA_MODE),common) 00038 ICUDATA_DIR=$(pkgdatadir) 00039 else 00040 ICUDATA_DIR=$(pkglibdir) 00041 endif 00042 00043 # ICU specific directories 00044 00045 pkgdatadir = $(datadir)/$(PACKAGE) 00046 pkglibdir = $(libdir)/$(PACKAGE) 00047 pkgsysconfdir = $(sysconfdir)/$(PACKAGE) 00048 00049 # Installation programs 00050 00051 MKINSTALLDIRS = $(SHELL) $(top_srcdir)/mkinstalldirs 00052 00053 INSTALL = /usr/bin/install -c 00054 INSTALL_PROGRAM = ${INSTALL} 00055 INSTALL_DATA = ${INSTALL} -m 644 00056 INSTALL_SCRIPT = ${INSTALL_PROGRAM} 00057 00058 # Compiler and tools 00059 00060 CC = gcc 00061 CXX = g++ 00062 00063 # Echo w/o newline 00064 00065 ECHO_N = -n 00066 ECHO_C = 00067