1## Copyright (C) 2016 and later: Unicode, Inc. and others.
2## License & terms of use: http://www.unicode.org/copyright.html
3## ******************************************************************************
4## *
5## *   Copyright (C) 1999-2014, International Business Machines
6## *   Corporation and others.  All Rights Reserved.
7## *
8## *******************************************************************************
9## Makefile.in for ICU - uconv
10## Steven  R. Loomis
11
12## Set the following to dll or static or common..
13UCONVMSG_MODE=static
14##############################################################
15
16srcdir=@srcdir@
17top_srcdir=@top_srcdir@
18
19top_builddir = ../..
20subdir = extra/uconv
21
22include $(top_builddir)/icudefs.mk
23
24MSGNAME=uconvmsg
25
26# RESSRC comes from resfiles.mk
27FILESEPCHAR=/
28include $(srcdir)/resfiles.mk
29
30RESDIR=$(MSGNAME)
31RESFILES=$(RESSRC:$(RESOURCESDIR)$(FILESEPCHAR)%.txt=$(RESDIR)/%.res)
32
33##
34
35TARGET_STUB_NAME = uconv
36
37SECTION = 1
38
39ALL_MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
40
41## Extra files to remove for 'make clean'
42CLEANFILES = *~ $(DEPS) $(ALL_MAN_FILES)
43
44## Target information
45TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
46
47CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
48CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit
49LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
50
51ifeq ($(PKGDATA_OPTS),)
52PKGDATA_OPTS = -O pkgdata.inc
53endif
54
55## generic settings for data - common.
56PKGMODE=common
57INSTALLTO=$(DESTDIR)$(ICUDATA_DIR)
58UCONVMSG_LIB=package-resfiles
59
60## Static mode
61ifeq ($(UCONVMSG_MODE),static)
62DEFS += -DUCONVMSG_LINK=$(MSGNAME)
63UCONVMSG_LIB = $(RESDIR)/$(LIBPREFIX)$(STATIC_PREFIX_WHEN_USED)$(MSGNAME).$(A)
64LIBS += $(UCONVMSG_LIB)
65PKGMODE=static
66INSTALLTO=$(libdir)
67endif
68
69## DLL mode
70ifeq ($(UCONVMSG_MODE),dll)
71DEFS += -DUCONVMSG_LINK=$(MSGNAME)
72LIBS += -L$(RESDIR) -l$(MSGNAME)
73PKGMODE=dll
74INSTALLTO=$(libdir)
75endif
76
77SOURCES = $(shell cat $(srcdir)/sources.txt)
78OBJECTS = $(patsubst %.cpp,%.o,$(patsubst %.c,%.o, $(SOURCES)))
79
80DEPS = $(OBJECTS:.o=.d)
81
82## List of phony targets
83.PHONY : all all-local install install-local clean clean-local \
84distclean resclean distclean-local dist dist-local \
85check check-local build-dir package-resfiles install-resfiles install-man
86
87## Clear suffix list
88.SUFFIXES :
89
90## List of standard targets
91all: all-local
92
93install: install-local
94clean: clean-local
95distclean : distclean-local
96dist: dist-local
97check: check-local
98
99all-local: build-dir $(TARGET) $(ALL_MAN_FILES)
100
101install-local: all-local install-target install-resfiles install-man
102
103install-target: all-local
104	$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
105	$(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
106
107dist-local:
108
109clean-local: resclean
110	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) $(RESFILES)
111	$(RMV) $(OBJECTS) $(TARGET)
112
113resclean:
114	@#-$(INVOKE) $(TOOLBINDIR)/pkgdata --clean -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
115	$(RMV) pkgdata.inc $(RESDIR)
116
117distclean-local: clean-local
118	$(RMV) Makefile $(DEPS)
119
120check-local: $(TARGET)
121ifneq (,$(filter $(PKGDATA_MODE),files common))
122	@echo "Currently, pkgdata is in \"$(PKGDATA_MODE)\" mode."
123	@echo "To test uconv, run this manually after installing ICU:"
124	@echo "\"./$(TARGET) -f ibm-37 $(srcdir)/samples/ibm-37-test.txt\""
125else
126	$(INVOKE) ./$(TARGET) -f ibm-37 $(srcdir)/samples/ibm-37-test.txt
127endif
128
129Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
130	cd $(top_builddir) \
131	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
132
133pkgdata.inc: pkgdataMakefile
134	$(MAKE) -f pkgdataMakefile
135
136build-dir:
137	@$(MKINSTALLDIRS) $(RESDIR)
138
139pkgdataMakefile:
140	cd $(top_builddir) \
141	&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
142
143$(TARGET_STUB_NAME).$(SECTION): $(srcdir)/$(TARGET_STUB_NAME).$(SECTION).in pkgdata.inc
144	cd $(top_builddir) \
145	 && CONFIG_FILES=$(subdir)/$(TARGET_STUB_NAME).$(SECTION) CONFIG_HEADERS= $(SHELL) ./config.status
146
147$(TARGET) : $(OBJECTS)  $(UCONVMSG_LIB)
148	$(LINK.cc) $(OUTOPT)$@ $(OBJECTS) $(LIBS)
149	$(POST_BUILD_STEP)
150
151# The | is an order-only prerequisite. This helps when the -j option is used,
152# and we don't want the files to be built before the directories are built.
153ifneq ($(filter order-only,$(.FEATURES)),)
154$(RESFILES) $(RESDIR)/$(RESDIR).lst: | build-dir
155endif
156
157$(UCONVMSG_LIB): $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc
158	$(INVOKE) $(PKGDATA_INVOKE_OPTS) $(TOOLBINDIR)/pkgdata -p $(MSGNAME) $(PKGDATA_OPTS) -m $(PKGMODE) -s $(RESDIR) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
159
160$(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
161	@-$(RMV) $@
162	@for file in $(RESFILES:$(RESDIR)/%.res=%.res); do \
163	  echo $$file >> $@; \
164	done;
165
166# no install for static mode
167ifneq ($(UCONVMSG_MODE),static)
168install-resfiles: $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc
169	$(MKINSTALLDIRS) $(DESTDIR)$(ICUDATA_DIR)
170	$(INVOKE) $(TOOLBINDIR)/pkgdata -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -I $(INSTALLTO) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
171else
172install-resfiles:
173endif
174
175$(MSGNAME)/%.res: $(srcdir)/$(RESOURCESDIR)/%.txt
176	$(INVOKE) $(TOOLBINDIR)/genrb -e UTF-8 -s $(^D) -d $(@D) $(^F)
177
178install-man: $(ALL_MAN_FILES)
179	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
180	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
181
182
183
184