2000-05-15 22:32:11 +00:00
|
|
|
#******************************************************************************
|
2000-01-13 23:54:23 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 1999, International Business Machines
|
|
|
|
# Corporation and others. All Rights Reserved.
|
|
|
|
#
|
|
|
|
#******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
## Makefile.in for ICU - icu.so
|
|
|
|
## 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@
|
|
|
|
|
|
|
|
## 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 = common
|
|
|
|
|
|
|
|
## Extra files to remove for 'make clean'
|
|
|
|
CLEANFILES = *~
|
|
|
|
|
|
|
|
## Target information
|
2000-05-13 00:13:15 +00:00
|
|
|
TARGET = $(LIBICU)uc.$(SO)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
DEFS = @DEFS@
|
2000-02-07 21:00:53 +00:00
|
|
|
CPPFLAGS = @CPPFLAGS@ -I. -I$(srcdir) -DICU_DATA_DIR=\"$(pkgdatadir)/$(VERSION)/\" -DUDATA_SO_SUFFIX=\".$(SO)\" -DU_COMMON_LIBNAME=\"$(TARGET)\"
|
1999-08-16 21:50:52 +00:00
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
CXXFLAGS = @CXXFLAGS@
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
LIBS = @LIBS@
|
|
|
|
|
1999-11-23 04:49:35 +00:00
|
|
|
### use the "--enable-mapped=" option to configure, to get mapped file behavior.
|
|
|
|
# the case where '--enable-mapped=yes'
|
|
|
|
@USE_MAPPED_TRUE@CPPFLAGS += -DUDATA_MAP
|
|
|
|
|
|
|
|
# the case where '--enable-mapped=no' (DEFAULT)
|
|
|
|
@USE_MAPPED_FALSE@CPPFLAGS += -DUDATA_DLL
|
|
|
|
###
|
|
|
|
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
OBJECTS = chariter.o umutex.o compdata.o compitr.o convert.o \
|
2000-05-22 19:50:23 +00:00
|
|
|
cpputils.o cstring.o dcmpdata.o digitlst.o filestrm.o umemstrm.o locid.o locmap.o \
|
2000-06-06 23:57:37 +00:00
|
|
|
mutex.o normlzr.o putil.o resbund.o schriter.o scsu.o \
|
2000-06-27 20:47:56 +00:00
|
|
|
uchar.o uchriter.o ucmp8.o ucmp16.o ucmp32.o ucnv.o ucnv_bld.o ucnv_cb.o \
|
2000-03-28 23:08:03 +00:00
|
|
|
ucnv_cnv.o ucnv_err.o ucnv_io.o uhash.o uhash_us.o uloc.o unicode.o unistr.o \
|
2000-07-21 00:53:51 +00:00
|
|
|
uresbund.o uresdata.o ustring.o rbdata.o ubidi.o ubidiwrt.o ubidiln.o \
|
2000-06-30 00:29:46 +00:00
|
|
|
bidi.o ushape.o uvector.o udata.o unames.o utf_impl.o \
|
2000-04-04 00:43:11 +00:00
|
|
|
ucnv2022.o ucnvlat1.o ucnv_utf.o ucnvsbcs.o ucnvmbcs.o ucnv_lmb.o
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
DEPS = $(OBJECTS:.o=.d)
|
|
|
|
|
|
|
|
## Header files to install
|
2000-02-07 21:00:53 +00:00
|
|
|
HEADERS = unicode/*.h $(srcdir)/unicode/*.h
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## List of phony targets
|
|
|
|
.PHONY : all all-local install install-local clean clean-local \
|
|
|
|
distclean distclean-local install-library install-headers dist \
|
|
|
|
dist-local check check-local
|
|
|
|
|
|
|
|
## Clear suffix list
|
|
|
|
.SUFFIXES :
|
|
|
|
|
|
|
|
## List of standard targets
|
|
|
|
all: all-local
|
|
|
|
install: install-local
|
|
|
|
clean: clean-local
|
|
|
|
distclean : distclean-local
|
|
|
|
dist: dist-local
|
|
|
|
check: check-local
|
|
|
|
|
|
|
|
all-local: $(TARGET)
|
|
|
|
|
|
|
|
install-local: install-headers install-library
|
|
|
|
|
|
|
|
install-library: all-local
|
2000-03-10 22:55:19 +00:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
2000-05-15 22:32:11 +00:00
|
|
|
$(INSTALL-S) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
install-headers:
|
2000-03-10 22:55:19 +00:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(includedir)/unicode
|
2000-02-04 07:25:38 +00:00
|
|
|
@for file in $(HEADERS); do \
|
2000-03-10 22:55:19 +00:00
|
|
|
echo "$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/unicode"; \
|
|
|
|
$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/unicode || exit; \
|
1999-08-16 21:50:52 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
dist-local:
|
|
|
|
|
|
|
|
clean-local:
|
2000-05-15 22:32:11 +00:00
|
|
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
|
|
|
$(RMV) $(OBJECTS) $(TARGET)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
distclean-local: clean-local
|
2000-05-15 22:32:11 +00:00
|
|
|
$(RMV) Makefile $(DEPS)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
check-local:
|
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
|
|
cd $(top_builddir) \
|
|
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
|
2000-01-06 20:14:26 +00:00
|
|
|
unicode/platform.h: $(srcdir)/unicode/platform.h.in $(top_builddir)/config.status
|
1999-08-16 21:50:52 +00:00
|
|
|
cd $(top_builddir) \
|
2000-02-04 07:24:18 +00:00
|
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
$(TARGET) : $(OBJECTS)
|
|
|
|
$(SHLIB.cc) -o $@ $^ $(LIBS)
|
|
|
|
|
2000-04-13 22:08:07 +00:00
|
|
|
ifeq (,$(MAKECMDGOALS))
|
|
|
|
-include $(DEPS)
|
|
|
|
else
|
2000-04-05 22:14:24 +00:00
|
|
|
ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
|
1999-08-16 21:50:52 +00:00
|
|
|
-include $(DEPS)
|
|
|
|
endif
|
2000-04-13 22:08:07 +00:00
|
|
|
endif
|
1999-08-16 21:50:52 +00:00
|
|
|
|