1 #****************************************************************************** 2 # 3 # Copyright (C) 1999-2010, International Business Machines 4 # Corporation and others. All Rights Reserved. 5 # 6 #****************************************************************************** 7 ## Makefile.in for ICU - tools/toolutil 8 ## Steven R. Loomis 9 10 ## Source directory information 11 srcdir = @srcdir@ 12 top_srcdir = @top_srcdir@ 13 14 top_builddir = ../.. 15 16 ## All the flags and other definitions are included here. 17 include $(top_builddir)/icudefs.mk 18 19 ## Build directory information 20 subdir = tools/toolutil 21 22 ## Extra files to remove for 'make clean' 23 CLEANFILES = *~ $(DEPS) $(IMPORT_LIB) $(MIDDLE_IMPORT_LIB) $(FINAL_IMPORT_LIB) 24 25 ## Target information 26 27 TARGET_STUBNAME=$(TOOLUTIL_STUBNAME) 28 29 ifneq ($(ENABLE_STATIC),) 30 TARGET = $(LIBDIR)/$(LIBSICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(A) 31 endif 32 33 ifneq ($(ENABLE_SHARED),) 34 SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO) 35 ALL_SO_TARGETS = $(SO_TARGET) $(MIDDLE_SO_TARGET) $(FINAL_SO_TARGET) $(SHARED_OBJECT) 36 endif 37 38 ALL_TARGETS = $(TARGET) $(ALL_SO_TARGETS) 39 40 DYNAMICCPPFLAGS = $(SHAREDLIBCPPFLAGS) 41 DYNAMICCFLAGS = $(SHAREDLIBCFLAGS) 42 DYNAMICCXXFLAGS = $(SHAREDLIBCXXFLAGS) 43 CFLAGS += $(LIBCFLAGS) 44 CXXFLAGS += $(LIBCXXFLAGS) 45 46 ifneq ($(top_builddir),$(top_srcdir)) 47 CPPFLAGS += -I$(top_builddir)/common 48 endif 49 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n $(LIBCPPFLAGS) 50 DEFS += -DU_TOOLUTIL_IMPLEMENTATION 51 LDFLAGS += $(LDFLAGSICUTOOLUTIL) 52 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) 53 54 OBJECTS = filestrm.o package.o pkgitems.o swapimpl.o toolutil.o unewdata.o \ 55 ucm.o ucmstate.o uoptions.o uparse.o \ 56 ucbuf.o xmlparser.o writesrc.o \ 57 pkg_icu.o pkg_genc.o pkg_gencmn.o flagparser.o filetools.o \ 58 udbgutil.o dbgutil.o ucln_tu.o 59 60 STATIC_OBJECTS = $(OBJECTS:.o=.$(STATIC_O)) 61 62 DEPS = $(OBJECTS:.o=.d) 63 64 -include Makefile.local 65 66 ## List of phony targets 67 .PHONY : all all-local install install-local clean clean-local \ 68 distclean distclean-local install-library dist \ 69 dist-local check check-local 70 71 ## Clear suffix list 72 .SUFFIXES : 73 74 ## List of standard targets 75 all: all-local 76 install: install-local 77 clean: clean-local 78 distclean : distclean-local 79 dist: dist-local 80 check: all check-local 81 82 all-local: $(ALL_TARGETS) 83 84 install-local: install-library 85 86 install-library: all-local 87 $(MKINSTALLDIRS) $(DESTDIR)$(libdir) 88 ifneq ($(ENABLE_STATIC),) 89 $(INSTALL-L) $(TARGET) $(DESTDIR)$(libdir) 90 endif 91 ifneq ($(ENABLE_SHARED),) 92 $(INSTALL-L) $(FINAL_SO_TARGET) $(DESTDIR)$(libdir) 93 ifneq ($(FINAL_SO_TARGET),$(SO_TARGET)) 94 cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(SO_TARGET)) 95 ifneq ($(FINAL_SO_TARGET),$(MIDDLE_SO_TARGET)) 96 cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(MIDDLE_SO_TARGET)) 97 endif 98 endif 99 ifneq ($(IMPORT_LIB_EXT),) 100 $(INSTALL-L) $(FINAL_IMPORT_LIB) $(DESTDIR)$(libdir) 101 ifneq ($(IMPORT_LIB),$(FINAL_IMPORT_LIB)) 102 cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(IMPORT_LIB)) 103 endif 104 ifneq ($(MIDDLE_IMPORT_LIB),$(FINAL_IMPORT_LIB)) 105 cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(MIDDLE_IMPORT_LIB)) 106 endif 107 endif 108 endif 109 110 dist-local: 111 112 clean-local: 113 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 114 $(RMV) $(OBJECTS) $(STATIC_OBJECTS) $(ALL_TARGETS) 115 116 distclean-local: clean-local 117 $(RMV) Makefile 118 119 check-local: all-local 120 121 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 122 cd $(top_builddir) \ 123 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 124 125 ifneq ($(ENABLE_STATIC),) 126 $(TARGET): $(STATIC_OBJECTS) 127 $(AR) $(ARFLAGS) $(AR_OUTOPT)$@ $^ 128 $(RANLIB) $@ 129 endif 130 131 ifneq ($(ENABLE_SHARED),) 132 $(SHARED_OBJECT): $(OBJECTS) 133 $(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS) 134 endif 135 136 ifeq (,$(MAKECMDGOALS)) 137 -include $(DEPS) 138 else 139 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 140 -include $(DEPS) 141 endif 142 endif 143 144