2005-12-02 10:21:39 +00:00
|
|
|
#******************************************************************************
|
|
|
|
#
|
|
|
|
# Copyright (C) 1999-2005, International Business Machines
|
|
|
|
# Corporation and others. All Rights Reserved.
|
|
|
|
#
|
|
|
|
#******************************************************************************
|
1999-11-23 20:40:51 +00:00
|
|
|
## Makefile.in for ICU - tools/toolutil
|
|
|
|
## Steven R. Loomis
|
|
|
|
|
2000-10-24 19:50:20 +00:00
|
|
|
## Source directory information
|
1999-11-23 20:40:51 +00:00
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
|
2000-10-26 19:28:33 +00:00
|
|
|
top_builddir = ../..
|
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
## All the flags and other definitions are included here.
|
2000-10-26 19:28:33 +00:00
|
|
|
include $(top_builddir)/icudefs.mk
|
1999-11-23 20:40:51 +00:00
|
|
|
|
|
|
|
## Build directory information
|
|
|
|
subdir = tools/toolutil
|
|
|
|
|
|
|
|
## Extra files to remove for 'make clean'
|
2004-04-05 21:25:47 +00:00
|
|
|
CLEANFILES = *~ $(DEPS) $(IMPORT_LIB) $(MIDDLE_IMPORT_LIB) $(FINAL_IMPORT_LIB)
|
1999-11-23 20:40:51 +00:00
|
|
|
|
|
|
|
## Target information
|
2000-09-22 22:58:36 +00:00
|
|
|
|
2004-04-19 17:32:30 +00:00
|
|
|
TARGET_STUBNAME=$(TOOLUTIL_STUBNAME)
|
2004-01-07 07:07:17 +00:00
|
|
|
|
2000-09-22 22:58:36 +00:00
|
|
|
ifneq ($(ENABLE_STATIC),)
|
2004-03-26 01:22:25 +00:00
|
|
|
TARGET = $(LIBDIR)/$(LIBSICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(A)
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ENABLE_SHARED),)
|
2004-03-26 01:22:25 +00:00
|
|
|
SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO)
|
2005-09-08 18:39:11 +00:00
|
|
|
ALL_SO_TARGETS = $(SO_TARGET) $(MIDDLE_SO_TARGET) $(FINAL_SO_TARGET) $(SHARED_OBJECT)
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ALL_TARGETS = $(TARGET) $(ALL_SO_TARGETS)
|
1999-11-23 20:40:51 +00:00
|
|
|
|
2000-10-09 19:06:57 +00:00
|
|
|
DYNAMICCPPFLAGS = $(SHAREDLIBCPPFLAGS)
|
|
|
|
DYNAMICCFLAGS = $(SHAREDLIBCFLAGS)
|
|
|
|
DYNAMICCXXFLAGS = $(SHAREDLIBCXXFLAGS)
|
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
ifneq ($(top_builddir),$(top_srcdir))
|
|
|
|
CPPFLAGS += -I$(top_builddir)/common
|
|
|
|
endif
|
|
|
|
CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n $(LIBCPPFLAGS)
|
2005-04-17 23:58:53 +00:00
|
|
|
DEFS += -DU_TOOLUTIL_IMPLEMENTATION
|
2005-12-02 10:21:39 +00:00
|
|
|
LDFLAGS += $(LDFLAGSICUTOOLUTIL)
|
2005-04-17 23:58:53 +00:00
|
|
|
LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS)
|
1999-11-23 20:40:51 +00:00
|
|
|
|
2005-09-20 18:40:04 +00:00
|
|
|
OBJECTS = filestrm.o package.o pkgitems.o propsvec.o swapimpl.o toolutil.o unewdata.o \
|
2005-08-26 15:38:20 +00:00
|
|
|
ucm.o ucmstate.o uoptions.o uparse.o \
|
|
|
|
ucbuf.o xmlparser.o writesrc.o
|
1999-11-23 20:40:51 +00:00
|
|
|
|
2000-10-09 19:06:57 +00:00
|
|
|
STATIC_OBJECTS = $(OBJECTS:.o=.$(STATIC_O))
|
|
|
|
|
1999-11-23 20:40:51 +00:00
|
|
|
DEPS = $(OBJECTS:.o=.d)
|
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
-include Makefile.local
|
|
|
|
|
1999-11-23 20:40:51 +00:00
|
|
|
## List of phony targets
|
2002-10-10 01:18:33 +00:00
|
|
|
.PHONY : all all-local install install-local clean clean-local \
|
2005-12-02 10:21:39 +00:00
|
|
|
distclean distclean-local install-library dist \
|
|
|
|
dist-local check check-local
|
1999-11-23 20:40:51 +00:00
|
|
|
|
|
|
|
## Clear suffix list
|
|
|
|
.SUFFIXES :
|
|
|
|
|
|
|
|
## List of standard targets
|
|
|
|
all: all-local
|
|
|
|
install: install-local
|
|
|
|
clean: clean-local
|
|
|
|
distclean : distclean-local
|
|
|
|
dist: dist-local
|
2000-08-01 01:55:54 +00:00
|
|
|
check: all check-local
|
1999-11-23 20:40:51 +00:00
|
|
|
|
2000-09-22 22:58:36 +00:00
|
|
|
all-local: $(ALL_TARGETS)
|
1999-11-23 20:40:51 +00:00
|
|
|
|
|
|
|
install-local: install-library
|
|
|
|
|
|
|
|
install-library: all-local
|
2002-10-10 01:18:33 +00:00
|
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
|
2000-09-27 22:05:50 +00:00
|
|
|
ifneq ($(ENABLE_STATIC),)
|
2004-03-26 18:35:15 +00:00
|
|
|
$(INSTALL-L) $(TARGET) $(DESTDIR)$(libdir)
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(ENABLE_SHARED),)
|
2004-03-26 18:35:15 +00:00
|
|
|
$(INSTALL-L) $(FINAL_SO_TARGET) $(DESTDIR)$(libdir)
|
2000-09-15 05:07:43 +00:00
|
|
|
ifneq ($(FINAL_SO_TARGET),$(SO_TARGET))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(SO_TARGET))
|
2004-11-09 19:21:06 +00:00
|
|
|
ifneq ($(FINAL_SO_TARGET),$(MIDDLE_SO_TARGET))
|
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(MIDDLE_SO_TARGET))
|
|
|
|
endif
|
2000-09-15 05:07:43 +00:00
|
|
|
endif
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
1999-11-23 20:40:51 +00:00
|
|
|
|
|
|
|
dist-local:
|
|
|
|
|
|
|
|
clean-local:
|
2002-10-10 01:18:33 +00:00
|
|
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
|
|
|
$(RMV) $(OBJECTS) $(STATIC_OBJECTS) $(ALL_TARGETS)
|
1999-11-23 20:40:51 +00:00
|
|
|
|
|
|
|
distclean-local: clean-local
|
2002-10-10 01:18:33 +00:00
|
|
|
$(RMV) Makefile
|
1999-11-23 20:40:51 +00:00
|
|
|
|
2000-08-01 01:55:54 +00:00
|
|
|
check-local: all-local
|
1999-11-23 20:40:51 +00:00
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
2002-10-10 01:18:33 +00:00
|
|
|
cd $(top_builddir) \
|
|
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
1999-11-23 20:40:51 +00:00
|
|
|
|
2000-09-22 22:58:36 +00:00
|
|
|
ifneq ($(ENABLE_STATIC),)
|
2000-10-09 19:06:57 +00:00
|
|
|
$(TARGET): $(TARGET)($(STATIC_OBJECTS))
|
2002-10-10 01:18:33 +00:00
|
|
|
$(RANLIB) $@
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ENABLE_SHARED),)
|
2005-09-08 18:39:11 +00:00
|
|
|
$(SHARED_OBJECT): $(OBJECTS)
|
2003-02-11 00:13:48 +00:00
|
|
|
$(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS)
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
1999-11-23 20:40:51 +00:00
|
|
|
|
2000-04-13 22:08:07 +00:00
|
|
|
ifeq (,$(MAKECMDGOALS))
|
|
|
|
-include $(DEPS)
|
|
|
|
else
|
2000-04-05 22:14:24 +00:00
|
|
|
ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
|
1999-11-23 20:40:51 +00:00
|
|
|
-include $(DEPS)
|
|
|
|
endif
|
2000-04-13 22:08:07 +00:00
|
|
|
endif
|
2005-12-02 10:21:39 +00:00
|
|
|
|