scuffed-code/icu4c/source/icudefs.mk.in
Yves Arrouye 8e28da7d3d ICU-692 factor in some common definitions, and include the platform
file to make porting easier.

X-SVN-Rev: 2772
2000-10-24 19:50:20 +00:00

58 lines
1021 B
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@
# 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@