| OLD | NEW |
| 1 ## Makefile.in for ICU - test/letest | 1 ## Makefile.in for ICU - test/letest |
| 2 ## Copyright (c) 2001-2014, International Business Machines Corporation and | 2 ## Copyright (c) 2001-2014, International Business Machines Corporation and |
| 3 ## others. All Rights Reserved. | 3 ## others. All Rights Reserved. |
| 4 | 4 |
| 5 ## Source directory information | 5 ## Source directory information |
| 6 srcdir = @srcdir@ | 6 srcdir = @srcdir@ |
| 7 top_srcdir = @top_srcdir@ | 7 top_srcdir = @top_srcdir@ |
| 8 | 8 |
| 9 top_builddir = ../.. | 9 top_builddir = ../.. |
| 10 | 10 |
| 11 include $(top_builddir)/icudefs.mk | 11 include $(top_builddir)/icudefs.mk |
| 12 | 12 |
| 13 ## Platform-specific setup | |
| 14 include @platform_make_fragment@ | |
| 15 | |
| 16 ## Build directory information | 13 ## Build directory information |
| 17 subdir = test/letest | 14 subdir = test/letest |
| 18 | 15 |
| 19 ## Extra files to remove for 'make clean' | 16 ## Extra files to remove for 'make clean' |
| 20 CLEANFILES = *~ $(DEPS) | 17 CLEANFILES = *~ $(DEPS) |
| 21 | 18 |
| 22 ## Target information | 19 ## Target information |
| 23 TESTTARGET = letest | 20 TESTTARGET = letest |
| 24 GENTARGET = gendata | 21 GENTARGET = gendata |
| 25 | 22 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 100 |
| 104 ifeq (,$(MAKECMDGOALS)) | 101 ifeq (,$(MAKECMDGOALS)) |
| 105 -include $(DEPS) | 102 -include $(DEPS) |
| 106 else | 103 else |
| 107 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 104 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
| 108 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) | 105 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) |
| 109 -include $(DEPS) | 106 -include $(DEPS) |
| 110 endif | 107 endif |
| 111 endif | 108 endif |
| 112 endif | 109 endif |
| OLD | NEW |