2011-06-24 23:00:04 +04:00
|
|
|
# -*- makefile -*-
|
|
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
1998-11-06 11:39:52 +03:00
|
|
|
|
2017-10-27 23:10:12 +03:00
|
|
|
# Defines main targets for driving the Firefox build system.
|
1998-11-06 11:39:52 +03:00
|
|
|
#
|
2017-10-27 23:10:12 +03:00
|
|
|
# This make file should not be invoked directly. Instead, use
|
|
|
|
# `mach` (likely `mach build`) for invoking the build system.
|
1998-11-06 12:06:37 +03:00
|
|
|
#
|
1999-02-17 20:36:29 +03:00
|
|
|
# Options:
|
1999-04-13 01:20:59 +04:00
|
|
|
# MOZ_OBJDIR - Destination object directory
|
1999-08-20 19:02:00 +04:00
|
|
|
# MOZ_MAKE_FLAGS - Flags to pass to $(MAKE)
|
1999-10-09 04:31:17 +04:00
|
|
|
#
|
2000-03-17 03:56:58 +03:00
|
|
|
#######################################################################
|
2010-10-28 22:15:15 +04:00
|
|
|
|
2021-03-09 17:45:24 +03:00
|
|
|
ifndef MACH
|
|
|
|
$(error client.mk must be used via `mach`. Try running \
|
|
|
|
`./mach $(firstword $(MAKECMDGOALS) $(.DEFAULT_GOAL))`)
|
2000-06-08 18:00:17 +04:00
|
|
|
endif
|
|
|
|
|
2021-03-09 17:45:24 +03:00
|
|
|
### Load mozconfig options
|
2017-11-10 09:27:16 +03:00
|
|
|
include $(OBJDIR)/.mozconfig-client-mk
|
2013-09-05 04:01:44 +04:00
|
|
|
|
2021-03-09 17:45:24 +03:00
|
|
|
### Set up make flags
|
2017-08-15 22:30:28 +03:00
|
|
|
ifdef MOZ_AUTOMATION
|
2017-07-26 03:23:25 +03:00
|
|
|
ifeq (4.0,$(firstword $(sort 4.0 $(MAKE_VERSION))))
|
|
|
|
MOZ_MAKE_FLAGS += --output-sync=line
|
|
|
|
endif
|
2017-08-15 22:30:28 +03:00
|
|
|
endif
|
2012-11-28 02:01:17 +04:00
|
|
|
|
2010-08-21 17:24:34 +04:00
|
|
|
MOZ_MAKE = $(MAKE) $(MOZ_MAKE_FLAGS) -C $(OBJDIR)
|
1998-12-19 03:10:52 +03:00
|
|
|
|
2021-03-09 17:45:24 +03:00
|
|
|
### Rules
|
2007-05-23 00:07:17 +04:00
|
|
|
# The default rule is build
|
|
|
|
build::
|
2011-03-25 21:50:29 +03:00
|
|
|
|
2017-11-10 01:59:06 +03:00
|
|
|
# In automation, manage an sccache daemon. The starting of the server
|
|
|
|
# needs to be in a make file so sccache inherits the jobserver.
|
|
|
|
ifdef MOZBUILD_MANAGE_SCCACHE_DAEMON
|
2021-10-08 12:30:48 +03:00
|
|
|
SCCACHE_STOP = $(MOZBUILD_MANAGE_SCCACHE_DAEMON) --stop-server
|
|
|
|
|
|
|
|
# When a command fails, make is going to abort, but we need to terminate the
|
|
|
|
# sccache server, otherwise it will prevent make itself from terminating
|
|
|
|
# because it would still be running and holding a jobserver token.
|
|
|
|
# However, we also need to preserve the command's exit code, thus the
|
|
|
|
# gymnastics.
|
|
|
|
SCCACHE_STOP_ON_FAILURE = || (x=$$?; $(SCCACHE_STOP) || true; exit $$x)
|
|
|
|
|
2017-11-10 01:59:06 +03:00
|
|
|
build::
|
|
|
|
# Terminate any sccache server that might still be around.
|
2021-10-08 12:30:48 +03:00
|
|
|
-$(SCCACHE_STOP) > /dev/null 2>&1
|
2017-11-10 01:59:06 +03:00
|
|
|
# Start a new server, ensuring it gets the jobserver file descriptors
|
|
|
|
# from make (but don't use the + prefix when make -n is used, so that
|
|
|
|
# the command doesn't run in that case)
|
2018-09-18 23:02:17 +03:00
|
|
|
mkdir -p $(UPLOAD_PATH)
|
2020-08-26 00:16:53 +03:00
|
|
|
$(if $(findstring n,$(filter-out --%, $(MAKEFLAGS))),,+)env SCCACHE_LOG=sccache=debug SCCACHE_ERROR_LOG=$(UPLOAD_PATH)/sccache.log $(MOZBUILD_MANAGE_SCCACHE_DAEMON) --start-server
|
2017-11-10 01:59:06 +03:00
|
|
|
endif
|
|
|
|
|
2021-03-09 17:45:24 +03:00
|
|
|
### Build it
|
2018-10-17 01:21:36 +03:00
|
|
|
build::
|
2021-10-08 12:30:48 +03:00
|
|
|
+$(MOZ_MAKE) $(SCCACHE_STOP_ON_FAILURE)
|
1999-03-26 03:03:10 +03:00
|
|
|
|
2016-06-01 01:22:49 +03:00
|
|
|
ifdef MOZ_AUTOMATION
|
2017-11-08 02:08:26 +03:00
|
|
|
build::
|
2021-10-08 12:30:48 +03:00
|
|
|
+$(MOZ_MAKE) automation/build $(SCCACHE_STOP_ON_FAILURE)
|
2016-06-01 01:22:49 +03:00
|
|
|
endif
|
|
|
|
|
2021-09-08 03:10:22 +03:00
|
|
|
ifdef MOZBUILD_MANAGE_SCCACHE_DAEMON
|
|
|
|
build::
|
|
|
|
# Terminate sccache server. This prints sccache stats.
|
2021-10-08 12:30:48 +03:00
|
|
|
-$(SCCACHE_STOP)
|
2021-09-08 03:10:22 +03:00
|
|
|
endif
|
|
|
|
|
2017-11-02 01:05:50 +03:00
|
|
|
.PHONY: \
|
Bug 1671424 - Move configure execution from client.mk to `mach configure`. r=firefox-build-system-reviewers,rstewart
`mach configure` currently runs the equivalent to `make -f client.mk`.
This is history, and essentially does the following:
- Create `configure` and `js/src/configure` from `configure.in` and
`js/src/configure.in` respectively.
- Create the objdir.
- Run `configure` from the objdir.
The `configure` script is, nowadays, only really used as a means to set
OLD_CONFIGURE (and also for people who want to run `configure`,
literally, as in the `configure; make` workflow). `mach configure`
actually doesn't need it. Neither does recursing into `js/src` require
`js/src/configure`, since bug 1520340 (and now as of bug 1669633, we
don't even recurse).
Because configure.py can actually derive OLD_CONFIGURE on its own
(except for `js/src/configure`, but `mach configure` doesn't run that),
we don't really need `configure` for `mach configure`.
So all in all, we're at a point in history where it's straightforward to
just initiate configure.py from mach configure, so we just do that.
And in the hypothetical case where the `mach configure` code is somehow
running in python2, we get the mach virtualenv python3 and use it to
execute `configure.py`.
Differential Revision: https://phabricator.services.mozilla.com/D93741
2020-10-20 23:41:52 +03:00
|
|
|
build
|