]> git.saurik.com Git - apple/icu.git/blame - makefile
ICU-6.2.15.tar.gz
[apple/icu.git] / makefile
CommitLineData
b75a7d8f
A
1##
2# Makefile for ICU
3#
4# See http://www.gnu.org/manual/make/html_chapter/make_toc.html#SEC_Contents
5# for documentation on makefiles. Most of this was culled from the ncurses makefile.
6#
7##
8
9#################################
10#################################
11# MAKE VARS
12#################################
13#################################
14
15# ':=' denotes a "simply expanded" variable. It's value is
16# set at the time of definition and it never recursively expands
17# when used. This is in contrast to using '=' which denotes a
18# recursively expanded variable.
19
20SHELL := /bin/sh
21
22# Sane defaults, which are typically overridden on the command line.
374ca955
A
23SRCROOT=$(shell pwd)
24OBJROOT=$(SRCROOT)/build
25DSTROOT=$(OBJROOT)
b75a7d8f 26SYMROOT=$(OBJROOT)
b75a7d8f
A
27APPLE_INTERNAL_DIR=/AppleInternal
28RC_ARCHS=
29
374ca955
A
30# Disallow $(SRCROOT) == $(OBJROOT)
31ifeq ($(OBJROOT), $(SRCROOT))
32$(error SRCROOT same as OBJROOT)
33endif
b75a7d8f
A
34
35#################################
36# Headers
37#################################
38
39# For installhdrs. Not every compiled module has an associated header. Normally,
40# ICU installs headers as a sub-targe of the install target. But since we only want
41# certain libraries to install (and since we link all of our own .o modules), we need
42# invoke the headers targets ourselves. This may be problematic because there isn't a
43# good way to dist-clean afterwards...we need to do explicit dist-cleans, especially if
44# install the extra libraries.
45
46EXTRA_HDRS =
47# EXTRA_HDRS = ./extra/ustdio/ ./layout/
48HDR_MAKE_SUBDIR = ./common/ ./i18n/ $(EXTRA_HDRS)
49
50#################################
51# Install
52#################################
53
54# For install. We currently don't install EXTRA_LIBS. We also don't install the data
55# directly into the ICU library. It is now installed at /usr/share/icu/*.dat. Thus we
56# don't use DATA_OBJ anymore. This could change if we decide to move the data back into
57# the icucore monolithic library.
58
59INSTALL = /usr/bin/install
60COMMON_OBJ = ./common/*.o
61I18N_OBJ = ./i18n/*.o
62STUB_DATA_OBJ = ./stubdata/*.o
374ca955
A
63COMMON_SRC = $(OBJROOT)/common/*.c
64I18N_SRC = $(OBJROOT)/i18n/*.c
65STUB_DATA_SRC = $(OBJROOT)/stubdata/*.c
b75a7d8f
A
66EXTRA_LIBS =
67#EXTRA_LIBS =./extra/ ./layout/ ./tools/ctestfw/ ./tools/toolutil/
68#DATA_OBJ = ./data/out/build/*.o
69
70#################################
71# Cleaning
72#################################
73
74#We need to clean after installing.
75
76EXTRA_CLEAN =
77
78# Some directories aren't cleaned recursively. Clean them manually...
79MANUAL_CLEAN_TOOLS = ./tools/dumpce
80MANUAL_CLEAN_EXTRA = ./extra/scrptrun ./samples/layout ./extra/ustdio ./extra
81MANUAL_CLEAN_TEST = ./test/collperf ./test/iotest ./test/letest ./test/thaitest ./test/threadtest ./test/testmap ./test
82MANUAL_CLEAN_SAMPLE = ./samples/layout ./samples
83
84CLEAN_SUBDIR = ./stubdata ./common ./i18n ./layout ./layoutex ./data ./tools ./$(MANUAL_CLEAN_TOOLS) $(MANUAL_CLEAN_EXTRA) $(MANUAL_CLEAN_TEST) $(MANUAL_CLEAN_SAMPLE)
85
86#################################
87# Config flags
88#################################
89
374ca955
A
90CONFIG_FLAGS = --disable-renaming --disable-extras --disable-ustdio --disable-layout \
91 --disable-samples --with-data-packaging=archive --prefix=/usr/local \
92 --srcdir=$(SRCROOT)/icuSources
b75a7d8f
A
93
94#################################
95# Install paths
96#################################
97
98# This may or may not be an appropriate name for the icu dylib. This naming scheme is
99# an attempt to follow the icu convention in naming the dylib and then having symbolic
100# links of easier to remember library names point it it. *UPDATE* the version and
101# sub-version variables as needed. The Core version should be 'A' until the core
102# version changes it's API...that is a new version isn't backwards compatible.
103# The ICU version/subversion should reflect the actual ICU version.
104
374ca955
A
105LIB_NAME = icucore
106ICU_VERS = 32
b75a7d8f
A
107ICU_SUBVERS = 0
108CORE_VERS = A
109DYLIB_SUFF = dylib
110libdir = /usr/lib/
111
374ca955
A
112INSTALLED_DYLIB = lib$(LIB_NAME).$(CORE_VERS).$(DYLIB_SUFF)
113DYLIB = lib$(LIB_NAME).$(DYLIB_SUFF)
b75a7d8f
A
114
115#################################
116# Data files
117#################################
118
119datadir=/usr/share/icu/
374ca955
A
120OPEN_SOURCE_VERSIONS_DIR=/usr/local/OpenSourceVersions/
121OPEN_SOURCE_LICENSES_DIR=/usr/local/OpenSourceLicenses/
122ICU_DATA_DIR= data/out
b75a7d8f
A
123B_DATA_FILE=icudt$(ICU_VERS)b.dat
124L_DATA_FILE=icudt$(ICU_VERS)l.dat
125
374ca955
A
126#################################
127# Environment variables
128#################################
129
130# $(RC_ARCHS:%=-arch %) is a substitution reference. It denotes, in this case,
131# for every value <val> in RC_ARCHS, replace it with "-arch <val>". Substitution
132# references have the form $(var:a=b). We can insert the strip and prebinding commands
133# into CFLAGS (and CXXFLAGS). This controls a lot of the external variables so we don't
134# need to directly modify the ICU files (like for CFLAGS, etc).
135
136LIBOVERRIDES=LIBICUDT="-L$(OBJROOT) -l$(LIB_NAME)" \
137 LIBICUUC="-L$(OBJROOT) -l$(LIB_NAME)" \
138 LIBICUI18N="-L$(OBJROOT) -l$(LIB_NAME)"
139
140ENV= APPLE_INTERNAL_DIR="$(APPLE_INTERNAL_DIR)" \
141 CFLAGS="-DICU_DATA_DIR=\"\\\"/usr/share/icu/\\\"\" $(RC_ARCHS:%=-arch %) -g -Os -fno-exceptions" \
03115e54 142 CXXFLAGS="-DICU_DATA_DIR=\"\\\"/usr/share/icu/\\\"\" $(RC_ARCHS:%=-arch %) -g -Os -fno-exceptions -fno-rtti" \
374ca955
A
143 RC_ARCHS="$(RC_ARCHS)" \
144 DYLD_LIBRARY_PATH="$(DSTROOT)/usr/local/lib"
145
146ENV_CONFIGURE= APPLE_INTERNAL_DIR="$(APPLE_INTERNAL_DIR)" \
147 CFLAGS="-DICU_DATA_DIR=\"\\\"/usr/share/icu/\\\"\" -g -Os -fno-exceptions" \
03115e54 148 CXXFLAGS="-DICU_DATA_DIR=\"\\\"/usr/share/icu/\\\"\" -g -Os -fno-exceptions -fno-rtti" \
374ca955
A
149 RC_ARCHS="$(RC_ARCHS)" \
150 DYLD_LIBRARY_PATH="$(DSTROOT)/usr/local/lib"
151
152ENV_DEBUG = APPLE_INTERNAL_DIR="$(APPLE_INTERNAL_DIR)" \
153 CFLAGS="-DICU_DATA_DIR=\"\\\"/usr/share/icu/\\\"\" $(RC_ARCHS:%=-arch %) -O0 -g -fno-exceptions" \
03115e54 154 CXXFLAGS="-DICU_DATA_DIR=\"\\\"/usr/share/icu/\\\"\" $(RC_ARCHS:%=-arch %) -O0 -g -fno-exceptions -fno-rtti" \
374ca955
A
155 RC_ARCHS="$(RC_ARCHS)" \
156 DYLD_LIBRARY_PATH="$(DSTROOT)/usr/local/lib"
157
158ENV_icu = ENV
159ENV_debug = ENV_DEBUG
160
161ORDERFILE=/usr/local/lib/OrderFiles/libicucore.order
162ifeq "$(shell test -f $(ORDERFILE) && echo YES )" "YES"
163 SECTORDER_FLAGS=-sectorder __TEXT __text $(ORDERFILE)
164else
165 SECTORDER_FLAGS=
166endif
167
168
b75a7d8f
A
169#################################
170#################################
171# TARGETS
172#################################
173#################################
374ca955
A
174
175.PHONY : icu check installsrc installhdrs clean install debug debug-install
176.DELETE_ON_ERROR :
177
178icu debug : $(OBJROOT)/Makefile
179 (cd $(OBJROOT); \
180 $(MAKE) $($(ENV_$@)); \
181 $($(ENV_$@)) $(CXX) -current_version $(ICU_VERS).$(ICU_SUBVERS) -compatibility_version 1 -dynamiclib -dynamic \
03115e54 182 $(RC_ARCHS:%=-arch %) $(CXXFLAGS) $(LDFLAGS) -single_module $(SECTORDER_FLAGS) \
374ca955
A
183 -install_name $(libdir)$(INSTALLED_DYLIB) -o ./$(INSTALLED_DYLIB) $(COMMON_OBJ) $(I18N_OBJ) $(STUB_DATA_OBJ); \
184 if test -f ./$(ICU_DATA_DIR)/$(B_DATA_FILE); then \
185 ln -fs ./$(ICU_DATA_DIR)/$(B_DATA_FILE); \
186 else \
187 DYLD_LIBRARY_PATH="./lib:./stubdata" \
188 ./bin/icuswap -tb ./$(ICU_DATA_DIR)/$(L_DATA_FILE) $(B_DATA_FILE); \
189 fi; \
190 if test -f ./$(ICU_DATA_DIR)/$(L_DATA_FILE); then \
191 ln -fs ./$(ICU_DATA_DIR)/$(L_DATA_FILE); \
192 else \
193 DYLD_LIBRARY_PATH="./lib:./stubdata" \
194 ./bin/icuswap -tl ./$(ICU_DATA_DIR)/$(B_DATA_FILE) $(L_DATA_FILE); \
195 fi; \
196 );
197
198check : icu
199 (cd $(OBJROOT); \
200 $(MAKE) $(ENV) check; \
201 );
202
203samples: icu
204 (cd $(OBJROOT)/samples; \
205 $(MAKE) $(ENV_DEBUG) $(LIBOVERRIDES); \
206 );
207
208extra: icu
209 (cd $(OBJROOT)/extra; \
210 $(MAKE) $(ENV_DEBUG) $(LIBOVERRIDES); \
211 );
212
213$(OBJROOT)/Makefile :
214 if test ! -d $(OBJROOT); then \
215 mkdir -p $(OBJROOT); \
216 fi;
217 (cd $(OBJROOT); $(ENV_CONFIGURE) $(SRCROOT)/icuSources/configure $(CONFIG_FLAGS);)
218
219debug-install: debug installhdrs
220 if test ! -d $(DSTROOT)$(libdir)/; then \
221 $(INSTALL) -d -m 0775 $(DSTROOT)$(libdir)/; \
222 fi;
223 $(INSTALL) -b -m 0664 $(OBJROOT)/$(INSTALLED_DYLIB) $(DSTROOT)$(libdir)$(INSTALLED_DYLIB)
224 (cd $(DSTROOT)$(libdir); \
225 ln -fs $(INSTALLED_DYLIB) $(DYLIB));
226 for subdir in $(EXTRA_LIBS); do \
227 (cd $(OBJROOT)/$$subdir; $(MAKE) -e DESTDIR=$(DSTROOT) $(ENV_DEBUG) install-library;) \
228 done;
229 if test ! -d $(DSTROOT)$(datadir)/; then \
230 $(INSTALL) -d -m 0755 $(DSTROOT)$(datadir)/; \
231 fi;
232 if test -f $(OBJROOT)/$(B_DATA_FILE); then \
233 $(INSTALL) -b -m 0644 $(OBJROOT)/$(B_DATA_FILE) $(DSTROOT)$(datadir)$(B_DATA_FILE); \
234 fi;
235 if test -f $(OBJROOT)/$(L_DATA_FILE); then \
236 $(INSTALL) -b -m 0644 $(OBJROOT)/$(L_DATA_FILE) $(DSTROOT)$(datadir)$(L_DATA_FILE); \
237 fi;
238 if test ! -d $(DSTROOT)$(OPEN_SOURCE_VERSIONS_DIR)/; then \
239 $(INSTALL) -d -m 0755 $(DSTROOT)$(OPEN_SOURCE_VERSIONS_DIR)/; \
240 fi;
241 $(INSTALL) -b -m 0644 $(SRCROOT)/ICU.plist $(DSTROOT)$(OPEN_SOURCE_VERSIONS_DIR)ICU.plist;
242 if test ! -d $(DSTROOT)$(OPEN_SOURCE_LICENSES_DIR)/; then \
243 $(INSTALL) -d -m 0755 $(DSTROOT)$(OPEN_SOURCE_LICENSES_DIR)/; \
244 fi;
245 $(INSTALL) -b -m 0644 $(SRCROOT)/license.html $(DSTROOT)$(OPEN_SOURCE_LICENSES_DIR)ICU.html;
246
247#################################
248# B&I TARGETS
249#################################
250
b75a7d8f
A
251# Since our sources are in icuSources (ignore the ICU subdirectory for now), we wish to
252# copy them to somewhere else. We tar it to stdout, cd to the appropriate directory, and
253# untar from stdin. We then look for all the CVS directories and remove them. We may have
254# to remove the .cvsignore files also.
255
256installsrc :
257 if test ! -d $(SRCROOT); then mkdir $(SRCROOT); fi;
258 if test -d $(SRCROOT)/icuSources ; then rm -rf $(SRCROOT)/icuSources; fi;
374ca955 259 tar cf - ./makefile ./ICU.plist ./license.html ./icuSources | (cd $(SRCROOT) ; tar xfp -); \
b75a7d8f
A
260 for i in `find $(SRCROOT)/icuSources/ | grep "CVS$$"` ; do \
261 if test -d $$i ; then \
262 rm -rf $$i; \
263 fi; \
264 done
265 for j in `find $(SRCROOT)/icuSources/ | grep ".cvsignore"` ; do \
266 if test -f $$j ; then \
267 rm -f $$j; \
268 fi; \
269 done
270
271# This works. Just not for ~ in the DSTROOT. We run configure first (in case it hasn't
272# been already). Then we make the install-headers target on specific makefiles (since
273# not every subdirectory/sub-component has a install-headers target).
274
374ca955
A
275installhdrs : $(OBJROOT)/Makefile
276 (cd $(OBJROOT); \
b75a7d8f
A
277 for subdir in $(HDR_MAKE_SUBDIR); do \
278 (cd $$subdir; $(MAKE) -e DESTDIR=$(DSTROOT) $(ENV) install-headers); \
374ca955
A
279 done;);
280
b75a7d8f
A
281# We run configure and run make first. This generates the .o files. We then link them
282# all up together into libicucore. Then we put it into its install location, create
283# symbolic links, and then strip the main dylib. Then install the remaining libraries.
284# We cleanup the sources folder.
285
374ca955 286install : installhdrs icu
b75a7d8f
A
287 if test ! -d $(DSTROOT)$(libdir)/; then \
288 $(INSTALL) -d -m 0775 $(DSTROOT)$(libdir)/; \
374ca955
A
289 fi;
290 $(INSTALL) -b -m 0664 $(OBJROOT)/$(INSTALLED_DYLIB) $(DSTROOT)$(libdir)$(INSTALLED_DYLIB)
291 (cd $(DSTROOT)$(libdir); \
292 ln -fs $(INSTALLED_DYLIB) $(DYLIB));
293 cp $(OBJROOT)/$(INSTALLED_DYLIB) $(SYMROOT)/$(INSTALLED_DYLIB);
294 strip -x -u -r -S $(DSTROOT)$(libdir)$(INSTALLED_DYLIB);
b75a7d8f 295 for subdir in $(EXTRA_LIBS); do \
374ca955 296 (cd $(OBJROOT)/$$subdir; $(MAKE) -e DESTDIR=$(DSTROOT) $(ENV) install-library;) \
b75a7d8f
A
297 done;
298 if test ! -d $(DSTROOT)$(datadir)/; then \
299 $(INSTALL) -d -m 0755 $(DSTROOT)$(datadir)/; \
300 fi;
374ca955
A
301 if test -f $(OBJROOT)/$(B_DATA_FILE); then \
302 $(INSTALL) -b -m 0644 $(OBJROOT)/$(B_DATA_FILE) $(DSTROOT)$(datadir)$(B_DATA_FILE); \
b75a7d8f 303 fi;
374ca955
A
304 if test -f $(OBJROOT)/$(L_DATA_FILE); then \
305 $(INSTALL) -b -m 0644 $(OBJROOT)/$(L_DATA_FILE) $(DSTROOT)$(datadir)$(L_DATA_FILE); \
b75a7d8f 306 fi;
374ca955
A
307 if test ! -d $(DSTROOT)$(OPEN_SOURCE_VERSIONS_DIR)/; then \
308 $(INSTALL) -d -m 0755 $(DSTROOT)$(OPEN_SOURCE_VERSIONS_DIR)/; \
b75a7d8f 309 fi;
374ca955
A
310 $(INSTALL) -b -m 0644 $(SRCROOT)/ICU.plist $(DSTROOT)$(OPEN_SOURCE_VERSIONS_DIR)ICU.plist;
311 if test ! -d $(DSTROOT)$(OPEN_SOURCE_LICENSES_DIR)/; then \
312 $(INSTALL) -d -m 0755 $(DSTROOT)$(OPEN_SOURCE_LICENSES_DIR)/; \
b75a7d8f 313 fi;
374ca955 314 $(INSTALL) -b -m 0644 $(SRCROOT)/license.html $(DSTROOT)$(OPEN_SOURCE_LICENSES_DIR)ICU.html;
b75a7d8f 315
374ca955
A
316clean :
317 -rm -rf $(OBJROOT)