| OLD | NEW |
| 1 #****************************************************************************** | 1 #****************************************************************************** |
| 2 # | 2 # |
| 3 # Copyright (C) 1999-2013, 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 - test/cintltst | 7 ## Makefile.in for ICU - test/cintltst |
| 8 | 8 |
| 9 ## Source directory information | 9 ## Source directory information |
| 10 srcdir = @srcdir@ | 10 srcdir = @srcdir@ |
| 11 top_srcdir = @top_srcdir@ | 11 top_srcdir = @top_srcdir@ |
| 12 | 12 |
| 13 top_builddir = ../.. | 13 top_builddir = ../.. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 42 cdateintervalformattest.o cdattst.o cdetst.o cdtdptst.o cdtrgtst.o cestst.o cfin
tst.o \ | 42 cdateintervalformattest.o cdattst.o cdetst.o cdtdptst.o cdtrgtst.o cestst.o cfin
tst.o \ |
| 43 cformtst.o cfrtst.o cg7coll.o chashtst.o cintltst.o citertst.o cjaptst.o cloctst
.o \ | 43 cformtst.o cfrtst.o cg7coll.o chashtst.o cintltst.o citertst.o cjaptst.o cloctst
.o \ |
| 44 cmsccoll.o cmsgtst.o cpluralrulestest.o cposxtst.o cldrtest.o \ | 44 cmsccoll.o cmsgtst.o cpluralrulestest.o cposxtst.o cldrtest.o \ |
| 45 cnmdptst.o cnormtst.o cnumtst.o crestst.o creststn.o cturtst.o \ | 45 cnmdptst.o cnormtst.o cnumtst.o crestst.o creststn.o cturtst.o \ |
| 46 cucdapi.o cucdtst.o custrtst.o cstrcase.o cutiltst.o nucnvtst.o nccbtst.o bocu1t
st.o \ | 46 cucdapi.o cucdtst.o custrtst.o cstrcase.o cutiltst.o nucnvtst.o nccbtst.o bocu1t
st.o \ |
| 47 cbiditst.o cbididat.o eurocreg.o udatatst.o utf16tst.o utransts.o \ | 47 cbiditst.o cbididat.o eurocreg.o udatatst.o utf16tst.o utransts.o \ |
| 48 ncnvfbts.o ncnvtst.o putiltst.o cstrtest.o udatpg_test.o utf8tst.o \ | 48 ncnvfbts.o ncnvtst.o putiltst.o cstrtest.o udatpg_test.o utf8tst.o \ |
| 49 stdnmtst.o usrchtst.o custrtrn.o sorttest.o trietest.o trie2test.o usettest.o \ | 49 stdnmtst.o usrchtst.o custrtrn.o sorttest.o trietest.o trie2test.o usettest.o \ |
| 50 uenumtst.o utmstest.o currtest.o \ | 50 uenumtst.o utmstest.o currtest.o \ |
| 51 idnatest.o nfsprep.o spreptst.o sprpdata.o \ | 51 idnatest.o nfsprep.o spreptst.o sprpdata.o \ |
| 52 hpmufn.o tracetst.o reapits.o uregiontest.o utexttst.o ucsdetst.o spooftest.o \ | 52 hpmufn.o tracetst.o reapits.o uregiontest.o ulistfmttest.o\ |
| 53 utexttst.o ucsdetst.o spooftest.o \ |
| 53 cgendtst.o | 54 cgendtst.o |
| 54 | 55 |
| 55 DEPS = $(OBJECTS:.o=.d) | 56 DEPS = $(OBJECTS:.o=.d) |
| 56 | 57 |
| 57 -include Makefile.local | 58 -include Makefile.local |
| 58 | 59 |
| 59 ## List of phony targets | 60 ## List of phony targets |
| 60 .PHONY : all all-local install install-local clean clean-local \ | 61 .PHONY : all all-local install install-local clean clean-local \ |
| 61 distclean distclean-local dist dist-local check check-local xcheck \ | 62 distclean distclean-local dist dist-local check check-local xcheck \ |
| 62 check-exhaustive check-exhaustive-local | 63 check-exhaustive check-exhaustive-local |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 110 |
| 110 ifeq (,$(MAKECMDGOALS)) | 111 ifeq (,$(MAKECMDGOALS)) |
| 111 -include $(DEPS) | 112 -include $(DEPS) |
| 112 else | 113 else |
| 113 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 114 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
| 114 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) | 115 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) |
| 115 -include $(DEPS) | 116 -include $(DEPS) |
| 116 endif | 117 endif |
| 117 endif | 118 endif |
| 118 endif | 119 endif |
| OLD | NEW |