2000-01-13 23:54:23 +00:00
|
|
|
#******************************************************************************
|
|
|
|
#
|
2006-08-12 09:47:38 +00:00
|
|
|
# Copyright (C) 1999-2006, International Business Machines
|
2000-01-13 23:54:23 +00:00
|
|
|
# Corporation and others. All Rights Reserved.
|
|
|
|
#
|
|
|
|
#******************************************************************************
|
2005-12-02 10:21:39 +00:00
|
|
|
## Makefile.in for ICU - icuio.so
|
1999-08-16 21:50:52 +00:00
|
|
|
## Stephen F. Booth
|
|
|
|
|
2002-04-19 02:19:24 +00:00
|
|
|
## Source directory information
|
1999-08-16 21:50:52 +00:00
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
|
2004-05-05 23:03:04 +00:00
|
|
|
top_builddir = ..
|
2000-10-26 19:28:33 +00:00
|
|
|
|
2002-04-19 02:19:24 +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-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## Build directory information
|
2004-05-05 23:03:04 +00:00
|
|
|
subdir = io
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## 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-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
## Target information
|
2000-09-22 22:58:36 +00:00
|
|
|
|
2004-04-19 17:32:30 +00:00
|
|
|
TARGET_STUBNAME=$(IO_STUBNAME)
|
2003-03-19 01:56:39 +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-20 07:33:15 +00:00
|
|
|
ALL_SO_TARGETS = $(SO_TARGET) $(MIDDLE_SO_TARGET) $(FINAL_SO_TARGET) $(SHARED_OBJECT)
|
2002-08-12 20:30:23 +00:00
|
|
|
|
2003-09-26 00:04:35 +00:00
|
|
|
ifeq ($(ENABLE_SO_VERSION_DATA),1)
|
2004-05-05 23:03:04 +00:00
|
|
|
SO_VERSION_DATA = io.res
|
2003-09-26 00:04:35 +00:00
|
|
|
endif
|
|
|
|
|
2002-08-12 20:30:23 +00:00
|
|
|
ifeq ($(OS390BATCH),1)
|
2005-11-11 17:31:39 +00:00
|
|
|
BATCH_TARGET = $(BATCH_IO_TARGET)
|
2002-08-12 20:30:23 +00:00
|
|
|
BATCH_LIBS = $(BATCH_LIBICUUC) $(BATCH_LIBICUI18N) -lm
|
|
|
|
endif # OS390BATCH
|
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
endif # ENABLE_SHARED
|
2000-09-22 22:58:36 +00:00
|
|
|
|
2002-08-12 20:30:23 +00:00
|
|
|
ALL_TARGETS = $(TARGET) $(ALL_SO_TARGETS) $(BATCH_TARGET)
|
1999-08-16 21:50:52 +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)
|
2004-05-05 23:03:04 +00:00
|
|
|
DEFS += -DU_IO_IMPLEMENTATION
|
2005-12-02 10:21:39 +00:00
|
|
|
LDFLAGS += $(LDFLAGSICUIO)
|
2002-04-19 02:19:24 +00:00
|
|
|
LIBS = $(LIBICUUC) $(LIBICUI18N) $(DEFAULT_LIBS)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2003-08-06 16:18:38 +00:00
|
|
|
OBJECTS = locbund.o ufile.o ufmt_cmn.o uprintf.o uprntf_p.o \
|
2004-03-16 19:02:00 +00:00
|
|
|
uscanf.o uscanf_p.o ustdio.o sprintf.o sscanf.o \
|
2006-08-12 09:47:38 +00:00
|
|
|
ustream.o ucln_io.o
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
## Header files to install
|
2000-03-02 20:26:02 +00:00
|
|
|
HEADERS = $(srcdir)/unicode/*.h
|
1999-10-11 17:18:23 +00:00
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
STATIC_OBJECTS = $(OBJECTS:.o=.$(STATIC_O))
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
DEPS = $(OBJECTS:.o=.d)
|
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
-include Makefile.local
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
## List of phony targets
|
2005-12-02 10:21:39 +00:00
|
|
|
.PHONY : all all-local install install-local clean clean-local \
|
|
|
|
distclean distclean-local install-library install-headers dist \
|
|
|
|
dist-local check check-local
|
1999-08-16 21:50:52 +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-08-16 21:50:52 +00:00
|
|
|
|
2000-09-22 22:58:36 +00:00
|
|
|
all-local: $(ALL_TARGETS)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2005-12-02 10:21:39 +00:00
|
|
|
install-local: install-headers install-library
|
1999-10-11 17:18:23 +00:00
|
|
|
|
|
|
|
install-library: all-local
|
2000-10-13 00:26:21 +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))
|
2003-04-10 17:42:21 +00:00
|
|
|
ifneq ($(FINAL_SO_TARGET),$(MIDDLE_SO_TARGET))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(MIDDLE_SO_TARGET))
|
2003-04-10 17:42:21 +00:00
|
|
|
endif
|
2000-09-15 05:07:43 +00:00
|
|
|
endif
|
2000-09-22 22:58:36 +00:00
|
|
|
endif
|
2003-03-19 01:56:39 +00:00
|
|
|
ifneq ($(IMPORT_LIB_EXT),)
|
2004-03-26 18:35:15 +00:00
|
|
|
$(INSTALL-L) $(FINAL_IMPORT_LIB) $(DESTDIR)$(libdir)
|
2004-10-21 00:08:48 +00:00
|
|
|
ifneq ($(IMPORT_LIB),$(FINAL_IMPORT_LIB))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(IMPORT_LIB))
|
2004-10-21 00:08:48 +00:00
|
|
|
endif
|
2003-04-10 17:42:21 +00:00
|
|
|
ifneq ($(MIDDLE_IMPORT_LIB),$(FINAL_IMPORT_LIB))
|
2004-03-26 17:57:09 +00:00
|
|
|
cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(MIDDLE_IMPORT_LIB))
|
2003-04-10 17:42:21 +00:00
|
|
|
endif
|
2003-03-19 01:56:39 +00:00
|
|
|
endif
|
1999-10-11 17:18:23 +00:00
|
|
|
|
|
|
|
install-headers:
|
2000-10-13 00:26:21 +00:00
|
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(includedir)/unicode
|
2000-03-02 20:26:02 +00:00
|
|
|
@for file in $(HEADERS); do \
|
2001-05-17 22:51:25 +00:00
|
|
|
echo "$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/unicode"; \
|
|
|
|
$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/unicode || exit; \
|
1999-10-11 17:18:23 +00:00
|
|
|
done
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
dist-local:
|
|
|
|
|
|
|
|
clean-local:
|
2000-05-15 22:32:11 +00:00
|
|
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
2003-09-26 00:04:35 +00:00
|
|
|
$(RMV) $(OBJECTS) $(STATIC_OBJECTS) $(ALL_TARGETS) $(SO_VERSION_DATA)
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
distclean-local: clean-local
|
2000-10-02 23:37:16 +00:00
|
|
|
$(RMV) Makefile
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
check-local:
|
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
|
|
cd $(top_builddir) \
|
|
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
|
2000-09-22 22:58:36 +00:00
|
|
|
ifneq ($(ENABLE_STATIC),)
|
2000-10-09 19:06:57 +00:00
|
|
|
$(TARGET): $(TARGET)($(STATIC_OBJECTS))
|
2000-09-22 22:58:36 +00:00
|
|
|
$(RANLIB) $@
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ENABLE_SHARED),)
|
2005-09-08 18:28:48 +00:00
|
|
|
$(SHARED_OBJECT): $(OBJECTS) $(SO_VERSION_DATA)
|
2003-02-11 00:13:48 +00:00
|
|
|
$(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS)
|
2002-08-12 20:30:23 +00:00
|
|
|
|
|
|
|
ifeq ($(OS390BATCH),1)
|
2005-12-02 10:21:39 +00:00
|
|
|
$(BATCH_TARGET):$(OBJECTS)
|
2003-02-11 00:13:48 +00:00
|
|
|
$(SHLIB.cc) $(LD_SONAME) $(OUTOPT)$@ $^ $(BATCH_LIBS)
|
2005-12-02 10:21:39 +00:00
|
|
|
endif # OS390BATCH
|
|
|
|
endif # ENABLE_SHARED
|
1999-08-16 21:50:52 +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-08-16 21:50:52 +00:00
|
|
|
-include $(DEPS)
|
|
|
|
endif
|
2000-04-13 22:08:07 +00:00
|
|
|
endif
|
2005-12-02 10:21:39 +00:00
|
|
|
|