]> git.saurik.com Git - apple/icu.git/blame - icuSources/extra/uconv/Makefile.in
ICU-66108.tar.gz
[apple/icu.git] / icuSources / extra / uconv / Makefile.in
CommitLineData
f3c0d7a5
A
1## Copyright (C) 2016 and later: Unicode, Inc. and others.
2## License & terms of use: http://www.unicode.org/copyright.html
b75a7d8f
A
3## ******************************************************************************
4## *
57a6839d 5## * Copyright (C) 1999-2014, International Business Machines
b75a7d8f
A
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)
73c04bcf 31RESFILES=$(RESSRC:$(RESOURCESDIR)$(FILESEPCHAR)%.txt=$(RESDIR)/%.res)
b75a7d8f
A
32
33##
34
374ca955
A
35TARGET_STUB_NAME = uconv
36
b75a7d8f
A
37SECTION = 1
38
374ca955 39ALL_MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
b75a7d8f
A
40
41## Extra files to remove for 'make clean'
42CLEANFILES = *~ $(DEPS) $(ALL_MAN_FILES)
43
44## Target information
374ca955 45TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
b75a7d8f 46
f3c0d7a5 47CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
57a6839d 48CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit
b75a7d8f
A
49LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
50
374ca955
A
51ifeq ($(PKGDATA_OPTS),)
52PKGDATA_OPTS = -O pkgdata.inc
53endif
54
b75a7d8f
A
55## generic settings for data - common.
56PKGMODE=common
57INSTALLTO=$(DESTDIR)$(ICUDATA_DIR)
51004dcb 58UCONVMSG_LIB=package-resfiles
b75a7d8f
A
59
60## Static mode
61ifeq ($(UCONVMSG_MODE),static)
62DEFS += -DUCONVMSG_LINK=$(MSGNAME)
4388f060 63UCONVMSG_LIB = $(RESDIR)/$(LIBPREFIX)$(STATIC_PREFIX_WHEN_USED)$(MSGNAME).$(A)
b75a7d8f
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
77OBJECTS = uconv.o uwmsg.o
78
79DEPS = $(OBJECTS:.o=.d)
80
81## List of phony targets
82.PHONY : all all-local install install-local clean clean-local \
51004dcb
A
83distclean resclean distclean-local dist dist-local \
84check check-local build-dir package-resfiles install-resfiles install-man
b75a7d8f
A
85
86## Clear suffix list
87.SUFFIXES :
88
89## List of standard targets
90all: all-local
91
92install: install-local
93clean: clean-local
94distclean : distclean-local
95dist: dist-local
96check: check-local
97
51004dcb 98all-local: build-dir $(TARGET) $(ALL_MAN_FILES)
b75a7d8f
A
99
100install-local: all-local install-target install-resfiles install-man
101
102install-target: all-local
103 $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
374ca955 104 $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
b75a7d8f
A
105
106dist-local:
107
108clean-local: resclean
109 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) $(RESFILES)
110 $(RMV) $(OBJECTS) $(TARGET)
111
112resclean:
729e4ab9 113 @#-$(INVOKE) $(TOOLBINDIR)/pkgdata --clean -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
b75a7d8f
A
114 $(RMV) pkgdata.inc $(RESDIR)
115
116distclean-local: clean-local
117 $(RMV) Makefile $(DEPS)
118
729e4ab9
A
119check-local: $(TARGET)
120ifneq (,$(filter $(PKGDATA_MODE),files common))
121 @echo "Currently, pkgdata is in \"$(PKGDATA_MODE)\" mode."
122 @echo "To test uconv, run this manually after installing ICU:"
123 @echo "\"./$(TARGET) -f ibm-37 $(srcdir)/samples/ibm-37-test.txt\""
124else
125 $(INVOKE) ./$(TARGET) -f ibm-37 $(srcdir)/samples/ibm-37-test.txt
126endif
b75a7d8f 127
73c04bcf 128Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
b75a7d8f
A
129 cd $(top_builddir) \
130 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
131
729e4ab9
A
132pkgdata.inc: pkgdataMakefile
133 $(MAKE) -f pkgdataMakefile
134
51004dcb
A
135build-dir:
136 @$(MKINSTALLDIRS) $(RESDIR)
137
729e4ab9 138pkgdataMakefile:
b75a7d8f 139 cd $(top_builddir) \
729e4ab9 140 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
b75a7d8f 141
73c04bcf 142$(TARGET_STUB_NAME).$(SECTION): $(srcdir)/$(TARGET_STUB_NAME).$(SECTION).in pkgdata.inc
374ca955 143 cd $(top_builddir) \
73c04bcf 144 && CONFIG_FILES=$(subdir)/$(TARGET_STUB_NAME).$(SECTION) CONFIG_HEADERS= $(SHELL) ./config.status
374ca955 145
b75a7d8f 146$(TARGET) : $(OBJECTS) $(UCONVMSG_LIB)
374ca955 147 $(LINK.cc) $(OUTOPT)$@ $(OBJECTS) $(LIBS)
46f4442e 148 $(POST_BUILD_STEP)
b75a7d8f 149
51004dcb
A
150# The | is an order-only prerequisite. This helps when the -j option is used,
151# and we don't want the files to be built before the directories are built.
152ifneq ($(filter order-only,$(.FEATURES)),)
153$(RESFILES) $(RESDIR)/$(RESDIR).lst: | build-dir
b75a7d8f
A
154endif
155
51004dcb 156$(UCONVMSG_LIB): $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc
729e4ab9 157 $(INVOKE) $(PKGDATA_INVOKE_OPTS) $(TOOLBINDIR)/pkgdata -p $(MSGNAME) $(PKGDATA_OPTS) -m $(PKGMODE) -s $(RESDIR) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
b75a7d8f 158
73c04bcf 159$(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
b75a7d8f 160 @-$(RMV) $@
73c04bcf
A
161 @for file in $(RESFILES:$(RESDIR)/%.res=%.res); do \
162 echo $$file >> $@; \
b75a7d8f
A
163 done;
164
165# no install for static mode
166ifneq ($(UCONVMSG_MODE),static)
4388f060 167install-resfiles: $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc
b75a7d8f 168 $(MKINSTALLDIRS) $(DESTDIR)$(ICUDATA_DIR)
729e4ab9 169 $(INVOKE) $(TOOLBINDIR)/pkgdata -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -I $(INSTALLTO) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
73c04bcf
A
170else
171install-resfiles:
b75a7d8f
A
172endif
173
73c04bcf 174$(MSGNAME)/%.res: $(srcdir)/$(RESOURCESDIR)/%.txt
729e4ab9 175 $(INVOKE) $(TOOLBINDIR)/genrb -e UTF-8 -s $(^D) -d $(@D) $(^F)
b75a7d8f
A
176
177install-man: $(ALL_MAN_FILES)
178 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
179 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
180
b75a7d8f 181
b75a7d8f 182