OLD | NEW |
1 #****************************************************************************** | 1 #****************************************************************************** |
2 # | 2 # |
3 # Copyright (C) 1999-2015, International Business Machines | 3 # Copyright (C) 1999-2015, International Business Machines |
4 # Corporation and others. All Rights Reserved. | 4 # Corporation and others. All Rights Reserved. |
5 # | 5 # |
6 #****************************************************************************** | 6 #****************************************************************************** |
7 ## Makefile.in for ICU - icuuc.so | 7 ## Makefile.in for ICU - icuuc.so |
8 ## Stephen F. Booth | 8 ## Stephen F. Booth |
9 | 9 |
10 ## Source directory information | 10 ## Source directory information |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 # $(LIBICUDT) is either stub data or the real DLL common data. | 77 # $(LIBICUDT) is either stub data or the real DLL common data. |
78 LIBS = $(LIBICUDT) $(DEFAULT_LIBS) | 78 LIBS = $(LIBICUDT) $(DEFAULT_LIBS) |
79 | 79 |
80 OBJECTS = errorcode.o putil.o umath.o utypes.o uinvchar.o umutex.o ucln_cmn.o \ | 80 OBJECTS = errorcode.o putil.o umath.o utypes.o uinvchar.o umutex.o ucln_cmn.o \ |
81 uinit.o uobject.o cmemory.o charstr.o \ | 81 uinit.o uobject.o cmemory.o charstr.o \ |
82 udata.o ucmndata.o udatamem.o umapfile.o udataswp.o ucol_swp.o utrace.o \ | 82 udata.o ucmndata.o udatamem.o umapfile.o udataswp.o ucol_swp.o utrace.o \ |
83 uhash.o uhash_us.o uenum.o ustrenum.o uvector.o ustack.o uvectr32.o uvectr64.o \ | 83 uhash.o uhash_us.o uenum.o ustrenum.o uvector.o ustack.o uvectr32.o uvectr64.o \ |
84 ucnv.o ucnv_bld.o ucnv_cnv.o ucnv_io.o ucnv_cb.o ucnv_err.o ucnvlat1.o \ | 84 ucnv.o ucnv_bld.o ucnv_cnv.o ucnv_io.o ucnv_cb.o ucnv_err.o ucnvlat1.o \ |
85 ucnv_u7.o ucnv_u8.o ucnv_u16.o ucnv_u32.o ucnvscsu.o ucnvbocu.o \ | 85 ucnv_u7.o ucnv_u8.o ucnv_u16.o ucnv_u32.o ucnvscsu.o ucnvbocu.o \ |
86 ucnv_ext.o ucnvmbcs.o ucnv2022.o ucnvhz.o ucnv_lmb.o ucnvisci.o ucnvdisp.o ucnv_
set.o ucnv_ct.o \ | 86 ucnv_ext.o ucnvmbcs.o ucnv2022.o ucnvhz.o ucnv_lmb.o ucnvisci.o ucnvdisp.o ucnv_
set.o ucnv_ct.o \ |
87 uresbund.o ures_cnv.o uresdata.o resbund.o resbund_cnv.o \ | 87 resource.o uresbund.o ures_cnv.o uresdata.o resbund.o resbund_cnv.o \ |
88 messagepattern.o ucat.o locmap.o uloc.o locid.o locutil.o locavailable.o locdisp
names.o loclikely.o locresdata.o \ | 88 messagepattern.o ucat.o locmap.o uloc.o locid.o locutil.o locavailable.o locdisp
names.o loclikely.o locresdata.o \ |
89 bytestream.o stringpiece.o \ | 89 bytestream.o stringpiece.o \ |
90 stringtriebuilder.o bytestriebuilder.o \ | 90 stringtriebuilder.o bytestriebuilder.o \ |
91 bytestrie.o bytestrieiterator.o \ | 91 bytestrie.o bytestrieiterator.o \ |
92 ucharstrie.o ucharstriebuilder.o ucharstrieiterator.o \ | 92 ucharstrie.o ucharstriebuilder.o ucharstrieiterator.o \ |
93 dictionarydata.o \ | 93 dictionarydata.o \ |
94 appendable.o ustr_cnv.o unistr_cnv.o unistr.o unistr_case.o unistr_props.o \ | 94 appendable.o ustr_cnv.o unistr_cnv.o unistr.o unistr_case.o unistr_props.o \ |
95 utf_impl.o ustring.o ustrcase.o ucasemap.o ucasemap_titlecase_brkiter.o cstring.
o ustrfmt.o ustrtrns.o ustr_wcs.o utext.o \ | 95 utf_impl.o ustring.o ustrcase.o ucasemap.o ucasemap_titlecase_brkiter.o cstring.
o ustrfmt.o ustrtrns.o ustr_wcs.o utext.o \ |
96 unistr_case_locale.o ustrcase_locale.o unistr_titlecase_brkiter.o ustr_titlecase
_brkiter.o \ | 96 unistr_case_locale.o ustrcase_locale.o unistr_titlecase_brkiter.o ustr_titlecase
_brkiter.o \ |
97 normalizer2impl.o normalizer2.o filterednormalizer2.o normlzr.o unorm.o unormcmp
.o loadednormalizer2impl.o \ | 97 normalizer2impl.o normalizer2.o filterednormalizer2.o normlzr.o unorm.o unormcmp
.o loadednormalizer2impl.o \ |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 endif # ENABLE_SHARED | 218 endif # ENABLE_SHARED |
219 | 219 |
220 ifeq (,$(MAKECMDGOALS)) | 220 ifeq (,$(MAKECMDGOALS)) |
221 -include $(DEPS) | 221 -include $(DEPS) |
222 else | 222 else |
223 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 223 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
224 -include $(DEPS) | 224 -include $(DEPS) |
225 endif | 225 endif |
226 endif | 226 endif |
227 | 227 |
OLD | NEW |