2 # vim:set ts=8 sw=8 sts=8 noet:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 # Build a mozilla application.
10 # 1. hg clone ssh://hg.mozilla.org/mozilla-central mozilla
12 # 3. create your .mozconfig file with
13 # ac_add_options --enable-application=browser
14 # 4. gmake -f client.mk
16 # Other targets (gmake -f client.mk [targets...]),
18 # clean (realclean is now the same as clean)
21 # See http://developer.mozilla.org/en/docs/Build_Documentation for
25 # MOZ_BUILD_PROJECTS - Build multiple projects in subdirectories
27 # MOZ_OBJDIR - Destination object directory
28 # MOZ_MAKE_FLAGS - Flags to pass to $(MAKE)
29 # MOZ_PREFLIGHT_ALL } - Makefiles to run before any project in
30 # MOZ_PREFLIGHT } MOZ_BUILD_PROJECTS, before each project, after
31 # MOZ_POSTFLIGHT } each project, and after all projects; these
32 # MOZ_POSTFLIGHT_ALL } variables contain space-separated lists
33 # MOZ_UNIFY_BDATE - Set to use the same bdate for each project in
36 #######################################################################
42 ifneq (1,$(words $(CWD
)))
43 $(error The mozilla directory cannot be located in a path with spaces.
)
51 ifeq (,$(wildcard client.mk
))
52 TOPSRCDIR
:= $(patsubst %/,%,$(dir $(MAKEFILE_LIST
)))
58 # try to find autoconf 2.13 - discard errors from 'which'
59 # MacOS X 10.4 sends "no autoconf*" errors to stdout, discard those via grep
60 AUTOCONF ?
= $(shell which autoconf-2.13 autoconf2.13 autoconf213
2>/dev
/null | grep
-v
'^no autoconf' | head
-1)
62 # See if the autoconf package was installed through fink
63 ifeq (,$(strip $(AUTOCONF
)))
64 AUTOCONF
= $(shell which fink
>/dev
/null
2>&1 && echo
`which fink`/..
/..
/lib
/autoconf2.13
/bin
/autoconf
)
67 ifeq (,$(strip $(AUTOCONF
)))
68 AUTOCONF
=$(error Could not find autoconf
2.13)
75 CONFIG_GUESS_SCRIPT
:= $(wildcard $(TOPSRCDIR
)/build
/autoconf
/config.guess
)
76 ifdef CONFIG_GUESS_SCRIPT
77 CONFIG_GUESS
:= $(shell $(CONFIG_GUESS_SCRIPT
))
81 ####################################
85 ifneq (,$(findstring mingw
,$(CONFIG_GUESS
)))
87 # check for CRLF line endings
88 ifneq (0,$(shell $(PERL
) -e
'binmode(STDIN); while (<STDIN>) { if (/\r/) { print "1"; exit } } print "0"' < $(TOPSRCDIR
)/client.mk
))
89 $(error This source tree appears to have Windows-style line endings. To \
90 convert it to Unix-style line endings
, check \
91 "https://developer.mozilla.org/en-US/docs/Developer_Guide/Mozilla_build_FAQ\#Win32-specific_questions" \
92 for a workaround of this issue.
)
96 ####################################
97 # Load mozconfig Options
99 # See build pages, http://www.mozilla.org/build/ for how to set up mozconfig.
106 # As $(shell) doesn't preserve newlines, use sed to replace them with an
107 # unlikely sequence (||), which is then replaced back to newlines by make
108 # before evaluation. $(shell) replacing newlines with spaces, || is always
109 # followed by a space (since sed doesn't remove newlines), except on the
110 # last line, so replace both '|| ' and '||'.
111 # Also, make MOZ_PGO available to mozconfig when passed on make command line.
112 # Likewise for MOZ_CURRENT_PROJECT.
113 MOZCONFIG_CONTENT
:= $(subst ||
,$(CR
),$(subst ||
,$(CR
),$(shell $(addprefix MOZ_CURRENT_PROJECT
=,$(MOZ_CURRENT_PROJECT
)) MOZ_PGO
=$(MOZ_PGO
) $(TOPSRCDIR
)/mach environment
--format
=client.mk | sed
's/$$/||/')))
114 $(eval
$(MOZCONFIG_CONTENT
))
116 export FOUND_MOZCONFIG
118 # As '||' was used as a newline separator, it means it's not occurring in
119 # lines themselves. It can thus safely be used to replaces normal spaces,
120 # to then replace newlines with normal spaces. This allows to get a list
121 # of mozconfig output lines.
122 MOZCONFIG_OUT_LINES
:= $(subst $(CR
), ,$(subst $(NULL
) $(NULL
),||
,$(MOZCONFIG_CONTENT
)))
123 # Filter-out comments from those lines.
125 MOZCONFIG_OUT_FILTERED
:= $(filter-out $(START_COMMENT
)%,$(MOZCONFIG_OUT_LINES
))
132 ifdef MOZ_PARALLEL_BUILD
133 MOZ_MAKE_FLAGS
:= $(filter-out -j
%,$(MOZ_MAKE_FLAGS
))
134 MOZ_MAKE_FLAGS
+= -j
$(MOZ_PARALLEL_BUILD
)
137 # Automatically add -jN to make flags if not defined. N defaults to number of cores.
138 ifeq (,$(findstring -j
,$(MOZ_MAKE_FLAGS
)))
139 cores
=$(shell $(PYTHON
) -c
'import multiprocessing; print(multiprocessing.cpu_count())')
140 MOZ_MAKE_FLAGS
+= -j
$(cores
)
144 ifdef MOZ_BUILD_PROJECTS
146 ifdef MOZ_CURRENT_PROJECT
147 BUILD_PROJECT_ARG
= MOZ_BUILD_APP
=$(MOZ_CURRENT_PROJECT
)
148 export MOZ_CURRENT_PROJECT
150 MOZ_MAKE
= $(error Cannot build in the OBJDIR when MOZ_CURRENT_PROJECT is not set.
)
152 endif # MOZ_BUILD_PROJECTS
154 MOZ_MAKE
= $(MAKE
) $(MOZ_MAKE_FLAGS
) -C
$(OBJDIR
)
156 # 'configure' scripts generated by autoconf.
157 CONFIGURES
:= $(TOPSRCDIR
)/configure
158 CONFIGURES
+= $(TOPSRCDIR
)/js
/src
/configure
160 # Make targets that are going to be passed to the real build system
161 OBJDIR_TARGETS
= install export libs
clean realclean distclean maybe_clobber_profiledbuild upload sdk installer package package-compare stage-package source-package l10n-check automation
/build
163 #######################################################################
166 # The default rule is build
168 $(MAKE
) -f
$(TOPSRCDIR
)/client.mk
$(if
$(MOZ_PGO
),profiledbuild
,realbuild
) CREATE_MOZCONFIG_JSON
=
171 include $(TOPSRCDIR
)/config
/makefiles
/makeutils.mk
172 include $(TOPSRCDIR
)/config
/makefiles
/autotargets.mk
174 # Create a makefile containing the mk_add_options values from mozconfig,
175 # but only do so when OBJDIR is defined (see further above).
176 ifdef MOZ_BUILD_PROJECTS
177 ifdef MOZ_CURRENT_PROJECT
178 WANT_MOZCONFIG_MK
= 1
183 WANT_MOZCONFIG_MK
= 1
186 ifdef WANT_MOZCONFIG_MK
187 # For now, only output "export" lines from mach environment --format=client.mk output.
188 MOZCONFIG_MK_LINES
:= $(filter export||
%,$(MOZCONFIG_OUT_LINES
))
189 $(OBJDIR
)/.mozconfig.mk
: $(FOUND_MOZCONFIG
) $(call mkdir_deps
,$(OBJDIR
)) $(OBJDIR
)/CLOBBER
190 $(if
$(MOZCONFIG_MK_LINES
),( $(foreach line
,$(MOZCONFIG_MK_LINES
), echo
'$(subst ||, ,$(line))';) )) > $@
192 # Include that makefile so that it is created. This should not actually change
193 # the environment since MOZCONFIG_CONTENT, which MOZCONFIG_OUT_LINES derives
194 # from, has already been eval'ed.
195 include $(OBJDIR
)/.mozconfig.mk
198 # Print out any options loaded from mozconfig.
199 all realbuild
clean distclean export libs
install realclean::
200 ifneq (,$(strip $(MOZCONFIG_OUT_FILTERED
)))
201 $(info Adding client.mk options from
$(FOUND_MOZCONFIG
):)
202 $(foreach line
,$(MOZCONFIG_OUT_FILTERED
),$(info $(NULL
) $(NULL
) $(NULL
) $(NULL
) $(subst ||
, ,$(line
))))
205 # Windows equivalents
207 clobber clobber_all
: clean
209 # helper target for mobile
210 build_and_deploy
: build package
install
212 # Do everything from scratch
213 everything
: clean build
215 ####################################
216 # Profile-Guided Optimization
217 # This is up here, outside of the MOZ_CURRENT_PROJECT logic so that this
218 # is usable in multi-pass builds, where you might not have a runnable
219 # application until all the build passes and postflight scripts have run.
221 $(MAKE
) -f
$(TOPSRCDIR
)/client.mk realbuild MOZ_PROFILE_GENERATE
=1 MOZ_PGO_INSTRUMENTED
=1 CREATE_MOZCONFIG_JSON
=
222 $(MAKE
) -C
$(OBJDIR
) package MOZ_PGO_INSTRUMENTED
=1 MOZ_INTERNAL_SIGNING_FORMAT
= MOZ_EXTERNAL_SIGNING_FORMAT
=
223 rm -f
$(OBJDIR
)/jarlog
/en-US.log
224 MOZ_PGO_INSTRUMENTED
=1 JARLOG_FILE
=jarlog
/en-US.log EXTRA_TEST_ARGS
=10 $(MAKE
) -C
$(OBJDIR
) pgo-profile-run
225 $(MAKE
) -f
$(TOPSRCDIR
)/client.mk maybe_clobber_profiledbuild CREATE_MOZCONFIG_JSON
=
226 $(MAKE
) -f
$(TOPSRCDIR
)/client.mk realbuild MOZ_PROFILE_USE
=1 CREATE_MOZCONFIG_JSON
=
228 #####################################################
229 # Build date unification
231 ifdef MOZ_UNIFY_BDATE
232 ifndef MOZ_BUILD_DATE
233 ifdef MOZ_BUILD_PROJECTS
234 MOZ_BUILD_DATE
= $(shell $(PYTHON
) $(TOPSRCDIR
)/toolkit
/xre
/make-platformini.py
--print-buildid
)
235 export MOZ_BUILD_DATE
240 #####################################################
241 # Preflight, before building any project
243 realbuild preflight_all
::
244 ifeq (,$(MOZ_CURRENT_PROJECT
)$(if
$(MOZ_PREFLIGHT_ALL
),,1))
245 # Don't run preflight_all for individual projects in multi-project builds
246 # (when MOZ_CURRENT_PROJECT is set.)
247 ifndef MOZ_BUILD_PROJECTS
248 # Building a single project, OBJDIR is usable.
250 for mkfile in
$(MOZ_PREFLIGHT_ALL
); do \
251 $(MAKE
) -f
$(TOPSRCDIR
)/$$mkfile preflight_all TOPSRCDIR
=$(TOPSRCDIR
) OBJDIR
=$(OBJDIR
) MOZ_OBJDIR
=$(MOZ_OBJDIR
); \
254 # OBJDIR refers to the project-specific OBJDIR, which is not available at
255 # this point when building multiple projects. Only MOZ_OBJDIR is available.
257 for mkfile in
$(MOZ_PREFLIGHT_ALL
); do \
258 $(MAKE
) -f
$(TOPSRCDIR
)/$$mkfile preflight_all TOPSRCDIR
=$(TOPSRCDIR
) MOZ_OBJDIR
=$(MOZ_OBJDIR
) MOZ_BUILD_PROJECTS
='$(MOZ_BUILD_PROJECTS)'; \
263 # If we're building multiple projects, but haven't specified which project,
266 ifeq (,$(MOZ_CURRENT_PROJECT
)$(if
$(MOZ_BUILD_PROJECTS
),,1))
267 configure realbuild preflight postflight
$(OBJDIR_TARGETS
)::
269 for app in
$(MOZ_BUILD_PROJECTS
); do \
270 $(MAKE
) -f
$(TOPSRCDIR
)/client.mk
$@ MOZ_CURRENT_PROJECT
=$$app; \
275 # MOZ_CURRENT_PROJECT: either doing a single-project build, or building an
276 # individual project in a multi-project build.
278 ####################################
281 MAKEFILE
= $(wildcard $(OBJDIR
)/Makefile
)
282 CONFIG_STATUS
= $(wildcard $(OBJDIR
)/config.status
)
283 CONFIG_CACHE
= $(wildcard $(OBJDIR
)/config.cache
)
285 EXTRA_CONFIG_DEPS
:= \
286 $(TOPSRCDIR
)/aclocal.m4 \
287 $(wildcard $(TOPSRCDIR
)/build
/autoconf
/*.m4
) \
288 $(TOPSRCDIR
)/js
/src
/aclocal.m4 \
291 $(CONFIGURES
): %: %.in
$(EXTRA_CONFIG_DEPS
)
292 @echo Generating
$@ using autoconf
293 cd
$(@D
); $(AUTOCONF
)
295 CONFIG_STATUS_DEPS
:= \
296 $(wildcard $(TOPSRCDIR
)/*/confvars.sh
) \
298 $(TOPSRCDIR
)/CLOBBER \
299 $(TOPSRCDIR
)/nsprpub
/configure \
300 $(TOPSRCDIR
)/config
/milestone.txt \
301 $(TOPSRCDIR
)/browser
/config
/version.txt \
302 $(TOPSRCDIR
)/build
/virtualenv_packages.txt \
303 $(TOPSRCDIR
)/python
/mozbuild
/mozbuild
/virtualenv.py \
304 $(TOPSRCDIR
)/testing
/mozbase
/packages.txt \
305 $(OBJDIR
)/.mozconfig.json \
308 CONFIGURE_ENV_ARGS
+= \
312 # configure uses the program name to determine @srcdir@. Calling it without
313 # $(TOPSRCDIR) will set @srcdir@ to "."; otherwise, it is set to the full
314 # path of $(TOPSRCDIR).
315 ifeq ($(TOPSRCDIR
),$(OBJDIR
))
316 CONFIGURE
= .
/configure
318 CONFIGURE
= $(TOPSRCDIR
)/configure
321 $(OBJDIR
)/CLOBBER
: $(TOPSRCDIR
)/CLOBBER
322 $(PYTHON
) $(TOPSRCDIR
)/config
/pythonpath.py
-I
$(TOPSRCDIR
)/testing
/mozbase
/mozfile \
323 $(TOPSRCDIR
)/python
/mozbuild
/mozbuild
/controller
/clobber.py
$(TOPSRCDIR
) $(OBJDIR
)
325 configure-files
: $(CONFIGURES
)
330 $(call mkdir_deps
,$(OBJDIR
)) \
331 $(if
$(MOZ_BUILD_PROJECTS
),$(call mkdir_deps
,$(MOZ_OBJDIR
))) \
333 $(OBJDIR
)/.mozconfig.json \
336 CREATE_MOZCONFIG_JSON
= $(shell $(TOPSRCDIR
)/mach environment
--format
=json
-o
$(OBJDIR
)/.mozconfig.json
)
337 # Force CREATE_MOZCONFIG_JSON above to be resolved, without side effects in
338 # case the result is non empty, and allowing an override on the make command
339 # line not running the command (using := $(shell) still runs the shell command).
340 ifneq (,$(CREATE_MOZCONFIG_JSON
))
343 $(OBJDIR
)/.mozconfig.json
: $(call mkdir_deps
,$(OBJDIR
)) ;
345 save-mozconfig
: $(FOUND_MOZCONFIG
)
346 -cp
$(FOUND_MOZCONFIG
) $(OBJDIR
)/.mozconfig
348 configure
:: $(configure-preqs
)
350 @echo
$(CONFIGURE
) $(CONFIGURE_ARGS
)
351 @cd
$(OBJDIR
) && $(BUILD_PROJECT_ARG
) $(CONFIGURE_ENV_ARGS
) $(CONFIGURE
) $(CONFIGURE_ARGS
) \
352 ||
( echo
'*** Fix above errors and then restart with\
353 "$(MAKE) -f client.mk build"' && exit
1 )
354 @touch
$(OBJDIR
)/Makefile
357 $(OBJDIR
)/Makefile
: $(OBJDIR
)/config.status
359 $(OBJDIR
)/config.status
: $(CONFIG_STATUS_DEPS
)
361 $(OBJDIR
)/Makefile
: $(CONFIG_STATUS_DEPS
)
363 @
$(MAKE
) -f
$(TOPSRCDIR
)/client.mk configure CREATE_MOZCONFIG_JSON
=
365 ifneq (,$(CONFIG_STATUS
))
366 $(OBJDIR
)/config
/autoconf.mk
: $(TOPSRCDIR
)/config
/autoconf.mk.in
367 $(PYTHON
) $(OBJDIR
)/config.status
-n
--file
=$(OBJDIR
)/config
/autoconf.mk
371 ####################################
374 realbuild preflight
::
377 for mkfile in
$(MOZ_PREFLIGHT
); do \
378 $(MAKE
) -f
$(TOPSRCDIR
)/$$mkfile preflight TOPSRCDIR
=$(TOPSRCDIR
) OBJDIR
=$(OBJDIR
) MOZ_OBJDIR
=$(MOZ_OBJDIR
); \
382 ####################################
385 realbuild
:: $(OBJDIR
)/Makefile
$(OBJDIR
)/config.status
388 ####################################
391 # Pass these target onto the real build system
392 $(OBJDIR_TARGETS
):: $(OBJDIR
)/Makefile
$(OBJDIR
)/config.status
395 ####################################
398 realbuild postflight
::
401 for mkfile in
$(MOZ_POSTFLIGHT
); do \
402 $(MAKE
) -f
$(TOPSRCDIR
)/$$mkfile postflight TOPSRCDIR
=$(TOPSRCDIR
) OBJDIR
=$(OBJDIR
) MOZ_OBJDIR
=$(MOZ_OBJDIR
); \
406 endif # MOZ_CURRENT_PROJECT
408 ####################################
409 # Postflight, after building all projects
411 realbuild postflight_all
::
412 ifeq (,$(MOZ_CURRENT_PROJECT
)$(if
$(MOZ_POSTFLIGHT_ALL
),,1))
413 # Don't run postflight_all for individual projects in multi-project builds
414 # (when MOZ_CURRENT_PROJECT is set.)
415 ifndef MOZ_BUILD_PROJECTS
416 # Building a single project, OBJDIR is usable.
418 for mkfile in
$(MOZ_POSTFLIGHT_ALL
); do \
419 $(MAKE
) -f
$(TOPSRCDIR
)/$$mkfile postflight_all TOPSRCDIR
=$(TOPSRCDIR
) OBJDIR
=$(OBJDIR
) MOZ_OBJDIR
=$(MOZ_OBJDIR
); \
422 # OBJDIR refers to the project-specific OBJDIR, which is not available at
423 # this point when building multiple projects. Only MOZ_OBJDIR is available.
425 for mkfile in
$(MOZ_POSTFLIGHT_ALL
); do \
426 $(MAKE
) -f
$(TOPSRCDIR
)/$$mkfile postflight_all TOPSRCDIR
=$(TOPSRCDIR
) MOZ_OBJDIR
=$(MOZ_OBJDIR
) MOZ_BUILD_PROJECTS
='$(MOZ_BUILD_PROJECTS)'; \
433 if
[ -f Makefile
]; then \
434 $(MAKE
) distclean ; \
436 echo
'Removing object files from srcdir...'; \
437 rm -fr
`find . -type d \( -name .deps -print -o -name CVS \
438 -o -exec test ! -d {}/CVS \; \) -prune \
439 -o \( -name '*.[ao]' -o -name '*.so' \) -type f -print`; \
440 build
/autoconf
/clean-config.sh
; \
446 # This makefile doesn't support parallel execution. It does pass
447 # MOZ_MAKE_FLAGS to sub-make processes, so they will correctly execute