2000-05-15 22:32:11 +00:00
|
|
|
#******************************************************************************
|
2000-01-13 23:54:23 +00:00
|
|
|
#
|
2006-01-12 20:26:26 +00:00
|
|
|
# Copyright (C) 1999-2006, International Business Machines
|
2000-01-13 23:54:23 +00:00
|
|
|
# Corporation and others. All Rights Reserved.
|
|
|
|
#
|
|
|
|
#******************************************************************************
|
2004-01-07 07:07:17 +00:00
|
|
|
## Makefile.in for ICU - icuuc.so
|
1999-08-16 21:50:52 +00:00
|
|
|
## Stephen F. Booth
|
|
|
|
|
2002-04-19 02:19:24 +00:00
|
|
|
## Source directory information
|
1999-08-16 21:50:52 +00:00
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
|
2000-10-26 19:28:33 +00:00
|
|
|
top_builddir = ..
|
|
|
|
|
2002-04-19 02:19:24 +00:00
|
|
|
## All the flags and other definitions are included here.
|
2000-10-26 19:28:33 +00:00
|
|
|
include $(top_builddir)/icudefs.mk
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## Build directory information
|
|
|
|
subdir = common
|
|
|
|
|
2006-06-30 14:42:58 +00:00
|
|
|
# for service hook
|
|
|
|
LOCALSVC_CPP=localsvc.cpp
|
|
|
|
SVC_HOOK_INC=$(top_builddir)/common/svchook.mk
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
## Extra files to remove for 'make clean'
|
2006-06-30 14:42:58 +00:00
|
|
|
CLEANFILES = *~ $(DEPS) $(IMPORT_LIB) $(MIDDLE_IMPORT_LIB) $(FINAL_IMPORT_LIB) $(SVC_HOOK_INC)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## Target information
|
2000-09-22 22:58:36 +00:00
|
|
|
|
2004-04-19 17:32:30 +00:00
|
|
|
TARGET_STUBNAME=$(COMMON_STUBNAME)
|
2003-03-19 01:56:39 +00:00
|
|
|
|
2000-09-22 22:58:36 +00:00
|
|
|
ifneq ($(ENABLE_STATIC),)
|
2004-03-26 01:22:25 +00:00
|
|
|
TARGET = $(LIBDIR)/$(LIBSICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(A)
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ENABLE_SHARED),)
|
2004-03-26 01:22:25 +00:00
|
|
|
SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO)
|
2005-09-08 18:11:32 +00:00
|
|
|
ALL_SO_TARGETS = $(SO_TARGET) $(MIDDLE_SO_TARGET) $(FINAL_SO_TARGET) $(SHARED_OBJECT)
|
2000-09-22 22:58:36 +00:00
|
|
|
|
2003-09-26 00:04:35 +00:00
|
|
|
ifeq ($(ENABLE_SO_VERSION_DATA),1)
|
|
|
|
SO_VERSION_DATA = common.res
|
|
|
|
endif
|
|
|
|
|
2001-01-27 03:20:01 +00:00
|
|
|
ifeq ($(OS390BATCH),1)
|
2002-08-12 20:30:23 +00:00
|
|
|
BATCH_TARGET = $(BATCH_COMMON_TARGET)
|
2001-11-12 20:12:47 +00:00
|
|
|
BATCH_LIBS = $(BATCH_LIBICUDT) -lm
|
2001-01-27 03:20:01 +00:00
|
|
|
endif # OS390BATCH
|
|
|
|
|
|
|
|
endif # ENABLE_SHARED
|
|
|
|
|
2002-02-07 02:10:22 +00:00
|
|
|
ALL_TARGETS = $(TARGET) $(ALL_SO_TARGETS) $(BATCH_TARGET)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-10-09 19:06:57 +00:00
|
|
|
DYNAMICCPPFLAGS = $(SHAREDLIBCPPFLAGS)
|
|
|
|
DYNAMICCFLAGS = $(SHAREDLIBCFLAGS)
|
|
|
|
DYNAMICCXXFLAGS = $(SHAREDLIBCXXFLAGS)
|
2007-06-04 05:52:08 +00:00
|
|
|
CFLAGS += $(LIBCFLAGS)
|
|
|
|
CXXFLAGS += $(LIBCXXFLAGS)
|
2000-10-09 19:06:57 +00:00
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
ifneq ($(top_builddir),$(top_srcdir))
|
|
|
|
CPPFLAGS += -I$(top_builddir)/common
|
|
|
|
endif
|
|
|
|
CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/i18n $(LIBCPPFLAGS)
|
2002-07-27 07:58:30 +00:00
|
|
|
DEFS += -DU_COMMON_IMPLEMENTATION
|
2005-12-02 10:21:39 +00:00
|
|
|
LDFLAGS += $(LDFLAGSICUUC)
|
1999-11-23 04:49:35 +00:00
|
|
|
|
2002-05-13 23:51:50 +00:00
|
|
|
# $(LIBICUDT) is either stub data or the real DLL common data.
|
2002-04-19 02:19:24 +00:00
|
|
|
LIBS = $(LIBICUDT) $(DEFAULT_LIBS)
|
|
|
|
|
2006-03-31 06:40:46 +00:00
|
|
|
OBJECTS = putil.o umath.o utypes.o uinvchar.o umutex.o ucln_cmn.o uinit.o uobject.o cmemory.o \
|
2006-03-24 21:24:39 +00:00
|
|
|
udata.o ucmndata.o udatamem.o umapfile.o udataswp.o ucol_swp.o utrace.o \
|
|
|
|
uhash.o uhash_us.o uenum.o ustrenum.o uvector.o ustack.o uvectr32.o \
|
|
|
|
ucnv.o ucnv_bld.o ucnv_cnv.o ucnv_io.o ucnv_cb.o ucnv_err.o ucnvlat1.o \
|
2003-08-29 21:05:48 +00:00
|
|
|
ucnv_u7.o ucnv_u8.o ucnv_u16.o ucnv_u32.o ucnvscsu.o ucnvbocu.o \
|
2006-03-24 21:24:39 +00:00
|
|
|
ucnv_ext.o ucnvmbcs.o ucnv2022.o ucnvhz.o ucnv_lmb.o ucnvisci.o ucnvdisp.o ucnv_set.o \
|
|
|
|
uresbund.o ures_cnv.o uresdata.o resbund.o resbund_cnv.o \
|
|
|
|
ucat.o locmap.o uloc.o locid.o locutil.o \
|
|
|
|
ustr_cnv.o unistr_cnv.o unistr.o unistr_case.o unistr_props.o \
|
|
|
|
utf_impl.o ustring.o ustrcase.o ucasemap.o cstring.o ustrfmt.o ustrtrns.o ustr_wcs.o utext.o \
|
2004-09-13 23:37:58 +00:00
|
|
|
normlzr.o unorm.o unormcmp.o unorm_it.o chariter.o schriter.o uchriter.o uiter.o \
|
2006-03-24 21:24:39 +00:00
|
|
|
uchar.o uprops.o ucase.o propname.o ubidi_props.o ubidi.o ubidiwrt.o ubidiln.o ushape.o \
|
|
|
|
uscript.o usc_impl.o unames.o \
|
2006-05-25 18:44:07 +00:00
|
|
|
utrie.o uset_props.o uniset_props.o uset.o uniset.o usetiter.o ruleiter.o caniter.o unifilt.o unifunct.o \
|
2006-03-24 21:24:39 +00:00
|
|
|
uarrsort.o brkiter.o ubrk.o brkeng.o dictbe.o triedict.o \
|
2002-06-25 17:23:07 +00:00
|
|
|
rbbi.o rbbidata.o rbbinode.o rbbirb.o rbbiscan.o rbbisetb.o rbbistbl.o rbbitblb.o \
|
2006-03-24 21:24:39 +00:00
|
|
|
serv.o servnotf.o servls.o servlk.o servlkf.o servrbf.o servslkf.o \
|
|
|
|
uidna.o usprep.o punycode.o \
|
2006-03-31 08:00:41 +00:00
|
|
|
util.o util_props.o parsepos.o locbased.o cwchar.o wintz.o
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
## Header files to install
|
|
|
|
HEADERS = $(srcdir)/unicode/*.h unicode/*.h
|
|
|
|
|
2000-10-09 19:06:57 +00:00
|
|
|
STATIC_OBJECTS = $(OBJECTS:.o=.$(STATIC_O))
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
DEPS = $(OBJECTS:.o=.d)
|
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
-include Makefile.local
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2006-06-30 14:42:58 +00:00
|
|
|
-include $(SVC_HOOK_INC)
|
|
|
|
|
|
|
|
|
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
|
2000-08-01 00:44:15 +00:00
|
|
|
check: all check-local
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-02-07 02:10:22 +00:00
|
|
|
all-local: $(ALL_TARGETS) unicode/platform.h
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
install-local: install-headers install-library
|
|
|
|
|
|
|
|
install-library: all-local
|
2000-10-13 00:26:21 +00:00
|
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
|
2000-09-27 22:05:50 +00:00
|
|
|
ifneq ($(ENABLE_STATIC),)
|
2004-03-26 18:35:15 +00:00
|
|
|
$(INSTALL-L) $(TARGET) $(DESTDIR)$(libdir)
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(ENABLE_SHARED),)
|
2004-03-26 18:35:15 +00:00
|
|
|
$(INSTALL-L) $(FINAL_SO_TARGET) $(DESTDIR)$(libdir)
|
2000-09-15 05:07:43 +00:00
|
|
|
ifneq ($(FINAL_SO_TARGET),$(SO_TARGET))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(SO_TARGET))
|
2003-04-10 17:42:21 +00:00
|
|
|
ifneq ($(FINAL_SO_TARGET),$(MIDDLE_SO_TARGET))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(MIDDLE_SO_TARGET))
|
2003-04-10 17:42:21 +00:00
|
|
|
endif
|
2000-09-15 05:07:43 +00:00
|
|
|
endif
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
2003-03-19 01:56:39 +00:00
|
|
|
ifneq ($(IMPORT_LIB_EXT),)
|
2004-03-26 18:35:15 +00:00
|
|
|
$(INSTALL-L) $(FINAL_IMPORT_LIB) $(DESTDIR)$(libdir)
|
2004-10-21 00:08:48 +00:00
|
|
|
ifneq ($(IMPORT_LIB),$(FINAL_IMPORT_LIB))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(IMPORT_LIB))
|
2004-10-21 00:08:48 +00:00
|
|
|
endif
|
2003-04-10 17:42:21 +00:00
|
|
|
ifneq ($(MIDDLE_IMPORT_LIB),$(FINAL_IMPORT_LIB))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(MIDDLE_IMPORT_LIB))
|
2003-04-10 17:42:21 +00:00
|
|
|
endif
|
2003-03-19 01:56:39 +00:00
|
|
|
endif
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2006-06-30 14:42:58 +00:00
|
|
|
$(SVC_HOOK_INC):
|
|
|
|
@echo generating $@
|
|
|
|
@-test -f $(top_srcdir)/common/$(LOCALSVC_CPP) && ( echo "have $(LOCALSVC_CPP) - U_LOCAL_SERVICE_HOOK=1" ; \
|
|
|
|
echo 'CPPFLAGS +=-DU_LOCAL_SERVICE_HOOK=1' > $@ ; \
|
|
|
|
echo 'OBJECTS += $(LOCALSVC_CPP:%.cpp=%.o)' >> $@ \
|
|
|
|
) ; true
|
|
|
|
@echo "# Autogenerated by Makefile" >> $@
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
install-headers:
|
2000-10-13 00:26:21 +00:00
|
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(includedir)/unicode
|
2000-02-04 07:25:38 +00:00
|
|
|
@for file in $(HEADERS); do \
|
2001-05-17 22:51:25 +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)
|
2003-09-26 00:04:35 +00:00
|
|
|
$(RMV) $(OBJECTS) $(STATIC_OBJECTS) $(ALL_TARGETS) $(SO_VERSION_DATA)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
distclean-local: clean-local
|
2006-06-30 14:42:58 +00:00
|
|
|
$(RMV) Makefile icucfg.h unicode/platform.h $(SVC_HOOK_INC)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
check-local:
|
|
|
|
|
2006-06-30 14:42:58 +00:00
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(SVC_HOOK_INC)
|
1999-08-16 21:50:52 +00:00
|
|
|
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
|
|
|
|
2000-09-22 22:58:36 +00:00
|
|
|
ifneq ($(ENABLE_STATIC),)
|
2000-10-09 19:06:57 +00:00
|
|
|
$(TARGET): $(TARGET)($(STATIC_OBJECTS))
|
2000-09-22 22:58:36 +00:00
|
|
|
$(RANLIB) $@
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ENABLE_SHARED),)
|
2005-09-08 18:11:32 +00:00
|
|
|
$(SHARED_OBJECT): $(OBJECTS) $(SO_VERSION_DATA)
|
2003-02-11 00:13:48 +00:00
|
|
|
$(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS)
|
2001-01-27 03:20:01 +00:00
|
|
|
|
|
|
|
ifeq ($(OS390BATCH),1)
|
2005-12-02 10:21:39 +00:00
|
|
|
$(BATCH_TARGET):$(OBJECTS)
|
2003-02-11 00:13:48 +00:00
|
|
|
$(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(BATCH_LIBS)
|
2001-01-27 03:20:01 +00:00
|
|
|
endif # OS390BATCH
|
|
|
|
endif # ENABLE_SHARED
|
1999-08-16 21:50:52 +00:00
|
|
|
|
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
|
|
|
|