1#******************************************************************************
2#
3#   Copyright (C) 1999-2014, International Business Machines
4#   Corporation and others.  All Rights Reserved.
5#
6#******************************************************************************
7## Makefile.in for ICU - icuuc.so
8## Stephen F. Booth
9
10## Source directory information
11srcdir = @srcdir@
12top_srcdir = @top_srcdir@
13
14top_builddir = ..
15
16## All the flags and other definitions are included here.
17include $(top_builddir)/icudefs.mk
18
19## Build directory information
20subdir = common
21
22# for service hook
23LOCALSVC_CPP=localsvc.cpp
24SVC_HOOK_INC=$(top_builddir)/common/svchook.mk
25
26## Extra files to remove for 'make clean'
27CLEANFILES = *~ $(DEPS) $(IMPORT_LIB) $(MIDDLE_IMPORT_LIB) $(FINAL_IMPORT_LIB) $(SVC_HOOK_INC)
28
29## Target information
30
31TARGET_STUBNAME=$(COMMON_STUBNAME)
32
33ifneq ($(ENABLE_STATIC),)
34TARGET = $(LIBDIR)/$(LIBSICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(A)
35endif
36
37ifneq ($(ENABLE_SHARED),)
38SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO)
39ALL_SO_TARGETS = $(SO_TARGET) $(MIDDLE_SO_TARGET) $(FINAL_SO_TARGET) $(SHARED_OBJECT)
40
41ifeq ($(ENABLE_SO_VERSION_DATA),1)
42SO_VERSION_DATA = common.res
43endif
44
45ifeq ($(OS390BATCH),1)
46BATCH_TARGET = $(BATCH_COMMON_TARGET)
47BATCH_LIBS = $(BATCH_LIBICUDT) -lm
48endif   # OS390BATCH
49
50endif   # ENABLE_SHARED
51
52ALL_TARGETS = $(TARGET) $(ALL_SO_TARGETS) $(BATCH_TARGET)
53
54DYNAMICCPPFLAGS = $(SHAREDLIBCPPFLAGS)
55DYNAMICCFLAGS = $(SHAREDLIBCFLAGS)
56DYNAMICCXXFLAGS = $(SHAREDLIBCXXFLAGS)
57CFLAGS += $(LIBCFLAGS)
58CXXFLAGS += $(LIBCXXFLAGS)
59ifeq ($(OS390BATCH),1)
60CFLAGS += -WI
61CXXFLAGS += -WI
62endif
63
64CPPFLAGS += -I$(srcdir) $(LIBCPPFLAGS) $(CPPFLAGSICUUC)
65# we want DEFS here
66DEFS += -DU_COMMON_IMPLEMENTATION 
67LDFLAGS += $(LDFLAGSICUUC)
68
69# for plugin configuration
70CPPFLAGS += "-DDEFAULT_ICU_PLUGINS=\"$(libdir)/icu\" "
71
72# for icu data location
73ifeq ($(PKGDATA_MODE),common)
74CPPFLAGS += "-DU_ICU_DATA_DEFAULT_DIR=\"$(ICUDATA_DIR)\""
75endif
76
77# $(LIBICUDT) is either stub data or the real DLL common data.
78LIBS = $(LIBICUDT) $(DEFAULT_LIBS)
79
80OBJECTS = errorcode.o putil.o umath.o utypes.o uinvchar.o umutex.o ucln_cmn.o \
81uinit.o uobject.o cmemory.o charstr.o \
82udata.o ucmndata.o udatamem.o umapfile.o udataswp.o ucol_swp.o utrace.o \
83uhash.o uhash_us.o uenum.o ustrenum.o uvector.o ustack.o uvectr32.o uvectr64.o \
84ucnv.o ucnv_bld.o ucnv_cnv.o ucnv_io.o ucnv_cb.o ucnv_err.o ucnvlat1.o \
85ucnv_u7.o ucnv_u8.o ucnv_u16.o ucnv_u32.o ucnvscsu.o ucnvbocu.o \
86ucnv_ext.o ucnvmbcs.o ucnv2022.o ucnvhz.o ucnv_lmb.o ucnvisci.o ucnvdisp.o ucnv_set.o ucnv_ct.o \
87uresbund.o ures_cnv.o uresdata.o resbund.o resbund_cnv.o \
88messagepattern.o ucat.o locmap.o uloc.o locid.o locutil.o locavailable.o locdispnames.o loclikely.o locresdata.o \
89bytestream.o stringpiece.o \
90stringtriebuilder.o bytestriebuilder.o \
91bytestrie.o bytestrieiterator.o \
92ucharstrie.o ucharstriebuilder.o ucharstrieiterator.o \
93dictionarydata.o \
94appendable.o ustr_cnv.o unistr_cnv.o unistr.o unistr_case.o unistr_props.o \
95utf_impl.o ustring.o ustrcase.o ucasemap.o ucasemap_titlecase_brkiter.o cstring.o ustrfmt.o ustrtrns.o ustr_wcs.o utext.o \
96unistr_case_locale.o ustrcase_locale.o unistr_titlecase_brkiter.o ustr_titlecase_brkiter.o \
97normalizer2impl.o normalizer2.o filterednormalizer2.o normlzr.o unorm.o unormcmp.o \
98chariter.o schriter.o uchriter.o uiter.o \
99patternprops.o uchar.o uprops.o ucase.o propname.o ubidi_props.o ubidi.o ubidiwrt.o ubidiln.o ushape.o \
100uscript.o uscript_props.o usc_impl.o unames.o \
101utrie.o utrie2.o utrie2_builder.o bmpset.o unisetspan.o uset_props.o uniset_props.o uniset_closure.o uset.o uniset.o usetiter.o ruleiter.o caniter.o unifilt.o unifunct.o \
102uarrsort.o brkiter.o ubrk.o brkeng.o dictbe.o \
103rbbi.o rbbidata.o rbbinode.o rbbirb.o rbbiscan.o rbbisetb.o rbbistbl.o rbbitblb.o \
104serv.o servnotf.o servls.o servlk.o servlkf.o servrbf.o servslkf.o \
105uidna.o usprep.o uts46.o punycode.o \
106util.o util_props.o parsepos.o locbased.o cwchar.o wintz.o dtintrv.o ucnvsel.o propsvec.o \
107ulist.o uloc_tag.o icudataver.o icuplug.o listformatter.o lrucache.o \
108sharedobject.o simplepatternformatter.o
109
110## Header files to install
111HEADERS = $(srcdir)/unicode/*.h
112
113STATIC_OBJECTS = $(OBJECTS:.o=.$(STATIC_O))
114
115DEPS = $(OBJECTS:.o=.d)
116
117-include Makefile.local
118
119-include $(SVC_HOOK_INC)
120
121
122## List of phony targets
123.PHONY : all all-local install install-local clean clean-local	\
124distclean distclean-local install-library install-headers dist	\
125dist-local check check-local check-exhaustive
126
127## Clear suffix list
128.SUFFIXES :
129
130## List of standard targets
131all: all-local
132install: install-local
133clean: clean-local
134distclean : distclean-local
135dist: dist-local
136check: all check-local
137
138check-exhaustive: check
139
140all-local: $(ALL_TARGETS)
141
142install-local: install-headers install-library
143
144install-library: all-local
145	$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
146ifneq ($(ENABLE_STATIC),)
147	$(INSTALL-L) $(TARGET) $(DESTDIR)$(libdir)
148endif
149ifneq ($(ENABLE_SHARED),)
150	$(INSTALL-L) $(FINAL_SO_TARGET) $(DESTDIR)$(libdir)
151ifneq ($(FINAL_SO_TARGET),$(SO_TARGET))
152	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(SO_TARGET))
153ifneq ($(FINAL_SO_TARGET),$(MIDDLE_SO_TARGET))
154	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(MIDDLE_SO_TARGET))
155endif
156endif
157ifneq ($(IMPORT_LIB_EXT),)
158	$(INSTALL-L) $(FINAL_IMPORT_LIB) $(DESTDIR)$(libdir)
159ifneq ($(IMPORT_LIB),$(FINAL_IMPORT_LIB))
160	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(IMPORT_LIB))
161endif
162ifneq ($(MIDDLE_IMPORT_LIB),$(FINAL_IMPORT_LIB))
163	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(MIDDLE_IMPORT_LIB))
164endif
165endif
166endif
167
168$(SVC_HOOK_INC):
169	@echo generating $@
170	@-test -f $(top_srcdir)/common/$(LOCALSVC_CPP) && ( echo "have $(LOCALSVC_CPP) - U_LOCAL_SERVICE_HOOK=1" ; \
171		echo 'CPPFLAGS +=-DU_LOCAL_SERVICE_HOOK=1' > $@ ; \
172		echo 'OBJECTS += $(LOCALSVC_CPP:%.cpp=%.o)' >> $@ \
173		 ) ; true
174	@echo "# Autogenerated by Makefile" >> $@
175
176install-headers:
177	$(MKINSTALLDIRS) $(DESTDIR)$(includedir)/unicode
178	@for file in $(HEADERS); do \
179	 echo "$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/unicode"; \
180	 $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/unicode || exit; \
181	done
182
183dist-local:
184
185clean-local:
186	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
187	$(RMV) $(OBJECTS) $(STATIC_OBJECTS) $(ALL_TARGETS) $(SO_VERSION_DATA)
188
189distclean-local: clean-local
190	$(RMV) Makefile icucfg.h $(SVC_HOOK_INC)
191
192check-local:
193
194Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(SVC_HOOK_INC)
195	cd $(top_builddir) \
196	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
197
198ifneq ($(ENABLE_STATIC),)
199$(TARGET): $(STATIC_OBJECTS)
200	$(AR) $(ARFLAGS) $(AR_OUTOPT)$@ $^
201	$(RANLIB) $@
202endif
203
204ifneq ($(ENABLE_SHARED),)
205$(SHARED_OBJECT): $(OBJECTS) $(SO_VERSION_DATA)
206	$(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS)
207ifeq ($(ENABLE_RPATH),YES)
208ifneq ($(wildcard $(libdir)/$(MIDDLE_SO_TARGET)),)
209	$(warning RPATH warning: --enable-rpath means test programs may use existing $(libdir)/$(MIDDLE_SO_TARGET))
210endif
211endif
212
213ifeq ($(OS390BATCH),1)
214$(BATCH_TARGET):$(OBJECTS)
215	$(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(BATCH_LIBS)
216endif   # OS390BATCH
217endif   # ENABLE_SHARED
218
219ifeq (,$(MAKECMDGOALS))
220-include $(DEPS)
221else
222ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
223-include $(DEPS)
224endif
225endif
226
227