bug 313956: expand installer .exe contents to make complete mar. r=ted.
[gecko.git] / client.mk
blob5b7a94fd284ae9680e74c17f1b563183be46ada7
1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
12 # License.
14 # The Original Code is mozilla.org code.
16 # The Initial Developer of the Original Code is
17 # Netscape Communications Corporation.
18 # Portions created by the Initial Developer are Copyright (C) 1998
19 # the Initial Developer. All Rights Reserved.
21 # Contributor(s):
22 # Stephen Lamm
23 # Benjamin Smedberg <bsmedberg@covad.net>
24 # Chase Phillips <chase@mozilla.org>
25 # Mark Mentovai <mark@moxienet.com>
27 # Alternatively, the contents of this file may be used under the terms of
28 # either the GNU General Public License Version 2 or later (the "GPL"), or
29 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30 # in which case the provisions of the GPL or the LGPL are applicable instead
31 # of those above. If you wish to allow use of your version of this file only
32 # under the terms of either the GPL or the LGPL, and not to allow others to
33 # use your version of this file under the terms of the MPL, indicate your
34 # decision by deleting the provisions above and replace them with the notice
35 # and other provisions required by the GPL or the LGPL. If you do not delete
36 # the provisions above, a recipient may use your version of this file under
37 # the terms of any one of the MPL, the GPL or the LGPL.
39 # ***** END LICENSE BLOCK *****
41 # Build a mozilla application.
43 # To build a tree,
44 # 1. hg clone ssh://hg.mozilla.org/mozilla-central mozilla
45 # 2. cd mozilla
46 # 3. create your .mozconfig file with
47 # ac_add_options --enable-application=browser
48 # 4. gmake -f client.mk
50 # Other targets (gmake -f client.mk [targets...]),
51 # build
52 # clean (realclean is now the same as clean)
53 # distclean
55 # See http://developer.mozilla.org/en/docs/Build_Documentation for
56 # more information.
58 # Options:
59 # MOZ_BUILD_PROJECTS - Build multiple projects in subdirectories
60 # of MOZ_OBJDIR
61 # MOZ_OBJDIR - Destination object directory
62 # MOZ_MAKE_FLAGS - Flags to pass to $(MAKE)
63 # MOZ_PREFLIGHT_ALL } - Makefiles to run before any project in
64 # MOZ_PREFLIGHT } MOZ_BUILD_PROJECTS, before each project, after
65 # MOZ_POSTFLIGHT } each project, and after all projects; these
66 # MOZ_POSTFLIGHT_ALL } variables contain space-separated lists
67 # MOZ_UNIFY_BDATE - Set to use the same bdate for each project in
68 # MOZ_BUILD_PROJECTS
70 #######################################################################
71 # Defines
73 comma := ,
75 CWD := $(CURDIR)
76 ifneq (1,$(words $(CWD)))
77 $(error The mozilla directory cannot be located in a path with spaces.)
78 endif
80 ifeq "$(CWD)" "/"
81 CWD := /.
82 endif
84 ifndef TOPSRCDIR
85 ifeq (,$(wildcard client.mk))
86 TOPSRCDIR := $(patsubst %/,%,$(dir $(MAKEFILE_LIST)))
87 MOZ_OBJDIR = .
88 else
89 TOPSRCDIR := $(CWD)
90 endif
91 endif
93 # try to find autoconf 2.13 - discard errors from 'which'
94 # MacOS X 10.4 sends "no autoconf*" errors to stdout, discard those via grep
95 AUTOCONF ?= $(shell which autoconf-2.13 autoconf2.13 autoconf213 2>/dev/null | grep -v '^no autoconf' | head -1)
97 ifeq (,$(strip $(AUTOCONF)))
98 AUTOCONF=$(error Couldn't find autoconf 2.13)
99 endif
101 MKDIR := mkdir
102 SH := /bin/sh
103 ifndef MAKE
104 MAKE := gmake
105 endif
106 PERL ?= perl
107 PYTHON ?= python
109 CONFIG_GUESS_SCRIPT := $(wildcard $(TOPSRCDIR)/build/autoconf/config.guess)
110 ifdef CONFIG_GUESS_SCRIPT
111 CONFIG_GUESS = $(shell $(CONFIG_GUESS_SCRIPT))
112 endif
115 ####################################
116 # Sanity checks
118 ifneq (,$(filter MINGW%,$(shell uname -s)))
119 # check for CRLF line endings
120 ifneq (0,$(shell $(PERL) -e 'binmode(STDIN); while (<STDIN>) { if (/\r/) { print "1"; exit } } print "0"' < $(TOPSRCDIR)/client.mk))
121 $(error This source tree appears to have Windows-style line endings. To \
122 convert it to Unix-style line endings, run \
123 "python mozilla/build/win32/mozilla-dos2unix.py")
124 endif
125 endif
127 ####################################
128 # Load mozconfig Options
130 # See build pages, http://www.mozilla.org/build/ for how to set up mozconfig.
132 MOZCONFIG_LOADER := build/autoconf/mozconfig2client-mk
133 MOZCONFIG_FINDER := build/autoconf/mozconfig-find
134 MOZCONFIG_MODULES := build/unix/uniq.pl
138 run_for_side_effects := \
139 $(shell $(TOPSRCDIR)/$(MOZCONFIG_LOADER) $(TOPSRCDIR) $(TOPSRCDIR)/.mozconfig.mk > $(TOPSRCDIR)/.mozconfig.out)
141 include $(TOPSRCDIR)/.mozconfig.mk
143 ifndef MOZ_OBJDIR
144 MOZ_OBJDIR = obj-$(CONFIG_GUESS)
145 endif
147 ifdef MOZ_BUILD_PROJECTS
149 ifdef MOZ_CURRENT_PROJECT
150 OBJDIR = $(MOZ_OBJDIR)/$(MOZ_CURRENT_PROJECT)
151 MOZ_MAKE = $(MAKE) $(MOZ_MAKE_FLAGS) -C $(OBJDIR)
152 BUILD_PROJECT_ARG = MOZ_BUILD_APP=$(MOZ_CURRENT_PROJECT)
153 else
154 OBJDIR = $(error Cannot find the OBJDIR when MOZ_CURRENT_PROJECT is not set.)
155 MOZ_MAKE = $(error Cannot build in the OBJDIR when MOZ_CURRENT_PROJECT is not set.)
156 endif
158 else # MOZ_BUILD_PROJECTS
160 OBJDIR = $(MOZ_OBJDIR)
161 MOZ_MAKE = $(MAKE) $(MOZ_MAKE_FLAGS) -C $(OBJDIR)
163 endif # MOZ_BUILD_PROJECTS
165 # 'configure' scripts generated by autoconf.
166 CONFIGURES := $(TOPSRCDIR)/configure
167 CONFIGURES += $(TOPSRCDIR)/js/src/configure
169 #######################################################################
170 # Rules
172 # The default rule is build
173 build::
174 $(MAKE) -f $(TOPSRCDIR)/client.mk $(if $(MOZ_PGO),profiledbuild,realbuild)
177 # Print out any options loaded from mozconfig.
178 all realbuild clean depend distclean export libs install realclean::
179 @if test -f .mozconfig.out; then \
180 cat .mozconfig.out; \
181 rm -f .mozconfig.out; \
182 else true; \
185 # Windows equivalents
186 build_all: build
187 build_all_dep: alldep
188 build_all_depend: alldep
189 clobber clobber_all: clean
191 # Do everything from scratch
192 everything: clean build
194 ####################################
195 # Profile-Guided Optimization
196 # To use this, you should set the following variables in your mozconfig
197 # mk_add_options PROFILE_GEN_SCRIPT=/path/to/profile-script
199 # The profile script should exercise the functionality to be included
200 # in the profile feedback.
202 # This is up here, outside of the MOZ_CURRENT_PROJECT logic so that this
203 # is usable in multi-pass builds, where you might not have a runnable
204 # application until all the build passes and postflight scripts have run.
205 ifdef MOZ_OBJDIR
206 PGO_OBJDIR = $(MOZ_OBJDIR)
207 else
208 PGO_OBJDIR := $(TOPSRCDIR)
209 endif
211 profiledbuild::
212 $(MAKE) -f $(TOPSRCDIR)/client.mk realbuild MOZ_PROFILE_GENERATE=1
213 $(MAKE) -C $(PGO_OBJDIR) package
214 OBJDIR=${PGO_OBJDIR} $(PROFILE_GEN_SCRIPT)
215 $(MAKE) -f $(TOPSRCDIR)/client.mk maybe_clobber_profiledbuild
216 $(MAKE) -f $(TOPSRCDIR)/client.mk realbuild MOZ_PROFILE_USE=1
218 #####################################################
219 # Build date unification
221 ifdef MOZ_UNIFY_BDATE
222 ifndef MOZ_BUILD_DATE
223 ifdef MOZ_BUILD_PROJECTS
224 MOZ_BUILD_DATE = $(shell $(PYTHON) $(TOPSRCDIR)/toolkit/xre/make-platformini.py --print-buildid)
225 export MOZ_BUILD_DATE
226 endif
227 endif
228 endif
230 #####################################################
231 # Preflight, before building any project
233 realbuild alldep preflight_all::
234 ifeq (,$(MOZ_CURRENT_PROJECT)$(if $(MOZ_PREFLIGHT_ALL),,1))
235 # Don't run preflight_all for individual projects in multi-project builds
236 # (when MOZ_CURRENT_PROJECT is set.)
237 ifndef MOZ_BUILD_PROJECTS
238 # Building a single project, OBJDIR is usable.
239 set -e; \
240 for mkfile in $(MOZ_PREFLIGHT_ALL); do \
241 $(MAKE) -f $(TOPSRCDIR)/$$mkfile preflight_all TOPSRCDIR=$(TOPSRCDIR) OBJDIR=$(OBJDIR) MOZ_OBJDIR=$(MOZ_OBJDIR); \
242 done
243 else
244 # OBJDIR refers to the project-specific OBJDIR, which is not available at
245 # this point when building multiple projects. Only MOZ_OBJDIR is available.
246 set -e; \
247 for mkfile in $(MOZ_PREFLIGHT_ALL); do \
248 $(MAKE) -f $(TOPSRCDIR)/$$mkfile preflight_all TOPSRCDIR=$(TOPSRCDIR) MOZ_OBJDIR=$(MOZ_OBJDIR) MOZ_BUILD_PROJECTS="$(MOZ_BUILD_PROJECTS)"; \
249 done
250 endif
251 endif
253 # If we're building multiple projects, but haven't specified which project,
254 # loop through them.
256 ifeq (,$(MOZ_CURRENT_PROJECT)$(if $(MOZ_BUILD_PROJECTS),,1))
257 configure depend realbuild install export libs clean realclean distclean alldep preflight postflight maybe_clobber_profiledbuild upload sdk::
258 set -e; \
259 for app in $(MOZ_BUILD_PROJECTS); do \
260 $(MAKE) -f $(TOPSRCDIR)/client.mk $@ MOZ_CURRENT_PROJECT=$$app; \
261 done
263 else
265 # MOZ_CURRENT_PROJECT: either doing a single-project build, or building an
266 # individual project in a multi-project build.
268 ####################################
269 # Configure
271 CONFIG_STATUS = $(wildcard $(OBJDIR)/config.status)
272 CONFIG_CACHE = $(wildcard $(OBJDIR)/config.cache)
274 EXTRA_CONFIG_DEPS := \
275 $(TOPSRCDIR)/aclocal.m4 \
276 $(wildcard $(TOPSRCDIR)/build/autoconf/*.m4) \
277 $(TOPSRCDIR)/js/src/aclocal.m4 \
278 $(NULL)
280 $(CONFIGURES): %: %.in $(EXTRA_CONFIG_DEPS)
281 @echo Generating $@ using autoconf
282 cd $(@D); $(AUTOCONF)
284 CONFIG_STATUS_DEPS := \
285 $(wildcard $(CONFIGURES)) \
286 $(TOPSRCDIR)/allmakefiles.sh \
287 $(TOPSRCDIR)/.mozconfig.mk \
288 $(wildcard $(TOPSRCDIR)/nsprpub/configure) \
289 $(wildcard $(TOPSRCDIR)/config/milestone.txt) \
290 $(wildcard $(TOPSRCDIR)/js/src/config/milestone.txt) \
291 $(wildcard $(TOPSRCDIR)/browser/config/version.txt) \
292 $(wildcard $(addsuffix confvars.sh,$(wildcard $(TOPSRCDIR)/*/))) \
293 $(NULL)
295 # configure uses the program name to determine @srcdir@. Calling it without
296 # $(TOPSRCDIR) will set @srcdir@ to "."; otherwise, it is set to the full
297 # path of $(TOPSRCDIR).
298 ifeq ($(TOPSRCDIR),$(OBJDIR))
299 CONFIGURE = ./configure
300 else
301 CONFIGURE = $(TOPSRCDIR)/configure
302 endif
304 configure-files: $(CONFIGURES)
306 configure:: configure-files
307 ifdef MOZ_BUILD_PROJECTS
308 @if test ! -d $(MOZ_OBJDIR); then $(MKDIR) $(MOZ_OBJDIR); else true; fi
309 endif
310 @if test ! -d $(OBJDIR); then $(MKDIR) $(OBJDIR); else true; fi
311 @echo cd $(OBJDIR);
312 @echo $(CONFIGURE) $(CONFIGURE_ARGS)
313 @cd $(OBJDIR) && $(BUILD_PROJECT_ARG) $(CONFIGURE_ENV_ARGS) $(CONFIGURE) $(CONFIGURE_ARGS) \
314 || ( echo "*** Fix above errors and then restart with\
315 \"$(MAKE) -f client.mk build\"" && exit 1 )
316 @touch $(OBJDIR)/Makefile
318 $(OBJDIR)/Makefile $(OBJDIR)/config.status: $(CONFIG_STATUS_DEPS)
319 @$(MAKE) -f $(TOPSRCDIR)/client.mk configure
321 ifneq (,$(CONFIG_STATUS))
322 $(OBJDIR)/config/autoconf.mk: $(TOPSRCDIR)/config/autoconf.mk.in
323 cd $(OBJDIR); \
324 CONFIG_FILES=config/autoconf.mk ./config.status
325 endif
328 ####################################
329 # Depend
331 depend:: $(OBJDIR)/Makefile $(OBJDIR)/config.status
332 $(MOZ_MAKE) export && $(MOZ_MAKE) depend
334 ####################################
335 # Preflight
337 realbuild alldep preflight::
338 ifdef MOZ_PREFLIGHT
339 set -e; \
340 for mkfile in $(MOZ_PREFLIGHT); do \
341 $(MAKE) -f $(TOPSRCDIR)/$$mkfile preflight TOPSRCDIR=$(TOPSRCDIR) OBJDIR=$(OBJDIR) MOZ_OBJDIR=$(MOZ_OBJDIR); \
342 done
343 endif
345 ####################################
346 # Build it
348 realbuild:: $(OBJDIR)/Makefile $(OBJDIR)/config.status
349 $(MOZ_MAKE)
351 ####################################
352 # Other targets
354 # Pass these target onto the real build system
355 install export libs clean realclean distclean alldep maybe_clobber_profiledbuild upload sdk:: $(OBJDIR)/Makefile $(OBJDIR)/config.status
356 $(MOZ_MAKE) $@
358 ####################################
359 # Postflight
361 realbuild alldep postflight::
362 ifdef MOZ_POSTFLIGHT
363 set -e; \
364 for mkfile in $(MOZ_POSTFLIGHT); do \
365 $(MAKE) -f $(TOPSRCDIR)/$$mkfile postflight TOPSRCDIR=$(TOPSRCDIR) OBJDIR=$(OBJDIR) MOZ_OBJDIR=$(MOZ_OBJDIR); \
366 done
367 endif
369 endif # MOZ_CURRENT_PROJECT
371 ####################################
372 # Postflight, after building all projects
374 realbuild alldep postflight_all::
375 ifeq (,$(MOZ_CURRENT_PROJECT)$(if $(MOZ_POSTFLIGHT_ALL),,1))
376 # Don't run postflight_all for individual projects in multi-project builds
377 # (when MOZ_CURRENT_PROJECT is set.)
378 ifndef MOZ_BUILD_PROJECTS
379 # Building a single project, OBJDIR is usable.
380 set -e; \
381 for mkfile in $(MOZ_POSTFLIGHT_ALL); do \
382 $(MAKE) -f $(TOPSRCDIR)/$$mkfile postflight_all TOPSRCDIR=$(TOPSRCDIR) OBJDIR=$(OBJDIR) MOZ_OBJDIR=$(MOZ_OBJDIR); \
383 done
384 else
385 # OBJDIR refers to the project-specific OBJDIR, which is not available at
386 # this point when building multiple projects. Only MOZ_OBJDIR is available.
387 set -e; \
388 for mkfile in $(MOZ_POSTFLIGHT_ALL); do \
389 $(MAKE) -f $(TOPSRCDIR)/$$mkfile postflight_all TOPSRCDIR=$(TOPSRCDIR) MOZ_OBJDIR=$(MOZ_OBJDIR) MOZ_BUILD_PROJECTS="$(MOZ_BUILD_PROJECTS)"; \
390 done
391 endif
392 endif
394 cleansrcdir:
395 @cd $(TOPSRCDIR); \
396 if [ -f Makefile ]; then \
397 $(MAKE) distclean ; \
398 else \
399 echo "Removing object files from srcdir..."; \
400 rm -fr `find . -type d \( -name .deps -print -o -name CVS \
401 -o -exec test ! -d {}/CVS \; \) -prune \
402 -o \( -name '*.[ao]' -o -name '*.so' \) -type f -print`; \
403 build/autoconf/clean-config.sh; \
406 echo-variable-%:
407 @echo $($*)
409 # This makefile doesn't support parallel execution. It does pass
410 # MOZ_MAKE_FLAGS to sub-make processes, so they will correctly execute
411 # in parallel.
412 .NOTPARALLEL:
414 .PHONY: checkout real_checkout depend realbuild build profiledbuild maybe_clobber_profiledbuild export libs alldep install clean realclean distclean cleansrcdir pull_all build_all clobber clobber_all pull_and_build_all everything configure preflight_all preflight postflight postflight_all upload sdk