1 ## ******************************************************************************
3 ## * Copyright (C) 1999-2006, International Business Machines
4 ## * Corporation and others. All Rights Reserved.
6 ## *******************************************************************************
7 ## Makefile.in for ICU - uconv
10 ## Set the following to dll or static or common..
12 ##############################################################
15 top_srcdir=@top_srcdir@
20 include $(top_builddir)/icudefs.mk
24 # RESSRC comes from resfiles.mk
26 include $(srcdir)/resfiles.mk
29 RESFILES=$(RESSRC:$(RESOURCESDIR)$(FILESEPCHAR)%.txt=$(RESDIR)/%.res)
33 TARGET_STUB_NAME = uconv
37 ALL_MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
39 ## Extra files to remove for 'make clean'
40 CLEANFILES = *~ $(DEPS) $(ALL_MAN_FILES)
43 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
45 CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
46 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
48 ifeq ($(PKGDATA_OPTS),)
49 PKGDATA_OPTS = -O pkgdata.inc
52 ## generic settings for data - common.
54 INSTALLTO=$(DESTDIR)$(ICUDATA_DIR)
58 ifeq ($(UCONVMSG_MODE),static)
59 DEFS += -DUCONVMSG_LINK=$(MSGNAME)
60 UCONVMSG_LIB = $(RESDIR)/$(LIBPREFIX)$(MSGNAME).$(A)
61 LIBS += $(UCONVMSG_LIB)
67 ifeq ($(UCONVMSG_MODE),dll)
68 DEFS += -DUCONVMSG_LINK=$(MSGNAME)
69 LIBS += -L$(RESDIR) -l$(MSGNAME)
74 OBJECTS = uconv.o uwmsg.o
76 DEPS = $(OBJECTS:.o=.d)
78 ## List of phony targets
79 .PHONY : all all-local install install-local clean clean-local \
80 distclean resclean distclean-local dist dist-local check check-local resfiles package-resfiles install-resfiles install-man
85 ## List of standard targets
88 install: install-local
90 distclean : distclean-local
94 all-local: $(TARGET) resfiles $(ALL_MAN_FILES)
96 install-local: all-local install-target install-resfiles install-man
98 install-target: all-local
99 $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
100 $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
104 clean-local: resclean
105 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) $(RESFILES)
106 $(RMV) $(OBJECTS) $(TARGET)
109 @#-$(INVOKE) $(BINDIR)/pkgdata --clean -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
110 $(RMV) pkgdata.inc $(RESDIR)
112 distclean-local: clean-local
113 $(RMV) Makefile $(DEPS)
117 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
119 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
121 pkgdata.inc: $(srcdir)/pkgdata.inc.in $(top_builddir)/config.status
123 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
125 $(TARGET_STUB_NAME).$(SECTION): $(srcdir)/$(TARGET_STUB_NAME).$(SECTION).in pkgdata.inc
127 && CONFIG_FILES=$(subdir)/$(TARGET_STUB_NAME).$(SECTION) CONFIG_HEADERS= $(SHELL) ./config.status
129 $(TARGET) : $(OBJECTS) $(UCONVMSG_LIB)
130 $(LINK.cc) $(OUTOPT)$@ $(OBJECTS) $(LIBS)
133 resfiles: $(RESFILES) package-resfiles
135 ifeq ($(UCONVMSG_STATIC),YES)
136 $(UCONVMSG_LIB): resfiles
140 package-resfiles: $(RESDIR)/$(RESDIR).lst pkgdata.inc
141 $(INVOKE) $(PKGDATA_INVOKE_OPTS) $(BINDIR)/pkgdata -p $(MSGNAME) $(PKGDATA_OPTS) -m $(PKGMODE) -s $(RESDIR) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
143 $(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
144 @$(MKINSTALLDIRS) $(RESDIR)
146 @for file in $(RESFILES:$(RESDIR)/%.res=%.res); do \
150 # no install for static mode
151 ifneq ($(UCONVMSG_MODE),static)
152 install-resfiles: $(RESFILES)
153 $(MKINSTALLDIRS) $(DESTDIR)$(ICUDATA_DIR)
154 $(INVOKE) $(BINDIR)/pkgdata -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -I $(INSTALLTO) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
160 $(UCONVMSG_LIB): resfiles
162 $(MSGNAME)/%.res: $(srcdir)/$(RESOURCESDIR)/%.txt
163 $(MKINSTALLDIRS) $(@D)
164 $(INVOKE) $(BINDIR)/genrb -e UTF-8 -s $(^D) -d $(@D) $(^F)
166 install-man: $(ALL_MAN_FILES)
167 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
168 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)