| OLD | NEW |
| 1 #****************************************************************************** | 1 #****************************************************************************** |
| 2 # | 2 # |
| 3 # Copyright (C) 1999-2011, 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 stubdata | 7 ## Makefile.in for ICU stubdata |
| 8 ## Stephen F. Booth | 8 ## Stephen F. Booth |
| 9 | 9 |
| 10 ## Source directory information | 10 ## Source directory information |
| 11 srcdir = @srcdir@ | 11 srcdir = @srcdir@ |
| 12 top_srcdir = @top_srcdir@ | 12 top_srcdir = @top_srcdir@ |
| 13 | 13 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | 119 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status |
| 120 | 120 |
| 121 ifneq ($(ENABLE_STATIC),) | 121 ifneq ($(ENABLE_STATIC),) |
| 122 $(TARGET): $(STATIC_OBJECTS) | 122 $(TARGET): $(STATIC_OBJECTS) |
| 123 $(AR) $(ARFLAGS) $(AR_OUTOPT)$@ $^ | 123 $(AR) $(ARFLAGS) $(AR_OUTOPT)$@ $^ |
| 124 $(RANLIB) $@ | 124 $(RANLIB) $@ |
| 125 endif | 125 endif |
| 126 | 126 |
| 127 ifneq ($(ENABLE_SHARED),) | 127 ifneq ($(ENABLE_SHARED),) |
| 128 $(SHARED_OBJECT): $(OBJECTS) | 128 $(SHARED_OBJECT): $(OBJECTS) |
| 129 ifeq ($(BUILD_HOST_ICU),AIX_GCC) |
| 130 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)libicudata.so $^ $(LIBS) |
| 131 mv libicudata.so $@ |
| 132 else |
| 129 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS) | 133 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS) |
| 134 endif |
| 130 ifeq ($(ENABLE_RPATH),YES) | 135 ifeq ($(ENABLE_RPATH),YES) |
| 131 ifneq ($(wildcard $(libdir)/$(MIDDLE_SO_TARGET)),) | 136 ifneq ($(wildcard $(libdir)/$(MIDDLE_SO_TARGET)),) |
| 132 $(warning RPATH warning: --enable-rpath means test programs may use exis
ting $(libdir)/$(MIDDLE_SO_TARGET)) | 137 $(warning RPATH warning: --enable-rpath means test programs may use exis
ting $(libdir)/$(MIDDLE_SO_TARGET)) |
| 133 endif | 138 endif |
| 134 endif | 139 endif |
| 135 | 140 |
| 136 ifeq ($(OS390BATCH),1) | 141 ifeq ($(OS390BATCH),1) |
| 137 $(BATCH_STUB_TARGET): $(OBJECTS) | 142 $(BATCH_STUB_TARGET): $(OBJECTS) |
| 138 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS) | 143 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS) |
| 139 endif # OS390BATCH | 144 endif # OS390BATCH |
| 140 endif # ENABLE_SHARED | 145 endif # ENABLE_SHARED |
| 141 | 146 |
| 142 ifeq (,$(MAKECMDGOALS)) | 147 ifeq (,$(MAKECMDGOALS)) |
| 143 -include $(DEPS) | 148 -include $(DEPS) |
| 144 else | 149 else |
| 145 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 150 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
| 146 -include $(DEPS) | 151 -include $(DEPS) |
| 147 endif | 152 endif |
| 148 endif | 153 endif |
| 149 | 154 |
| OLD | NEW |