21169f142d
put the .dat file in $(pkgdatadir), and the .so file in $(pkglibdir) with a compatibility symlink for lib/icu/current. X-SVN-Rev: 2999
68 lines
1.2 KiB
Makefile
68 lines
1.2 KiB
Makefile
|
|
# 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@
|
|
|
|
# Should be the same as U_ICUDATA_NAME
|
|
ICUDATA_NAME = icudt@LIB_VERSION_MAJOR@@ICUDATA_CHAR@
|
|
ifeq ($(strip $(PKGDATA_MODE)),)
|
|
PKGDATA_MODE=@DATA_PACKAGING_MODE@
|
|
endif
|
|
ifeq ($(PKGDATA_MODE),common)
|
|
ICUDATA_DIR=$(pkgdatadir)
|
|
else
|
|
ICUDATA_DIR=$(pkglibdir)
|
|
endif
|
|
|
|
# ICU specific directories
|
|
|
|
pkgdatadir = $(datadir)/$(PACKAGE)
|
|
pkglibdir = $(libdir)/$(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@
|
|
|