1999-12-15 09:40:24 +00:00
#
2012-05-21 11:12:37 +00: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-08-21 03:34:44 +00:00
2009-03-11 20:32:10 +00:00
i f n d e f . P Y M A K E
i f e q ( , $( MAKE_VERSION ) )
$( error GNU Make is required )
e n d i f
2013-10-16 22:55:14 +00:00
make_min_ver := 3.81
i f n e q ( $( make_min_ver ) , $( firstword $ ( sort $ ( make_min_ver ) $ ( MAKE_VERSION ) ) ) )
$( error GNU Make $ ( make_min_ver ) or higher is required )
2009-03-11 20:32:10 +00:00
e n d i f
e n d i f
2013-05-17 17:54:53 +00:00
export TOPLEVEL_BUILD := 1
2008-12-19 14:50:24 +00:00
default ::
2005-11-08 17:53:54 +00:00
2014-01-13 22:38:40 +00:00
i f d e f M O Z _ B U I L D _ A P P
2006-08-29 16:53:40 +00:00
i n c l u d e $( topsrcdir ) / $( MOZ_BUILD_APP ) / b u i l d . m k
2014-01-13 22:38:40 +00:00
e n d i f
2002-10-25 05:59:52 +00:00
2008-12-19 14:50:24 +00:00
i n c l u d e $( topsrcdir ) / c o n f i g / c o n f i g . m k
2013-09-24 22:05:43 +00:00
GARBAGE_DIRS += dist _javagen _profile staticlib
2012-08-29 06:55:58 +00:00
DIST_GARBAGE = config.cache config.log config.status* config-defs.h \
Bug 627277 - Remove (broken) BeOS support. r=biesi,dwitte,gavin,joe,jorendorff,josh,khuey,mfinkle,neil,Pike,roc,shaver,smontagu,taras
2011-02-19 19:10:24 +00:00
config/autoconf.mk \
2013-08-22 06:55:59 +00:00
mozilla-config.h \
2008-01-28 22:05:47 +00:00
netwerk/necko-config.h xpcom/xpcom-config.h xpcom/xpcom-private.h \
2013-09-05 00:01:44 +00:00
.mozconfig.mk
1998-10-28 03:40:33 +00:00
2014-02-11 01:37:47 +00:00
i f d e f J S _ S T A N D A L O N E
2014-01-13 22:38:40 +00:00
configure_dir = $( topsrcdir) /js/src
e l s e
configure_dir = $( topsrcdir)
e n d i f
2013-04-12 14:03:06 +00:00
i f n d e f M O Z _ P R O F I L E _ U S E
2013-10-28 23:00:30 +00:00
# We need to explicitly put backend.RecursiveMakeBackend here
2013-05-21 06:26:20 +00:00
# otherwise the rule in rules.mk doesn't run early enough.
2014-01-13 22:38:40 +00:00
libs binaries export tools :: CLOBBER $( configure_dir ) /configure config .status backend .RecursiveMakeBackend
2014-02-11 01:37:47 +00:00
i f n d e f J S _ S T A N D A L O N E
libs binaries export tools :: $( topsrcdir ) /js /src /configure js /src /config .status
2013-09-30 23:25:38 +00:00
e n d i f
2013-04-12 14:03:06 +00:00
e n d i f
2008-12-19 14:50:24 +00:00
2014-02-11 01:37:47 +00:00
i f d e f J S _ S T A N D A L O N E
2014-01-13 22:38:40 +00:00
.PHONY : CLOBBER
CLOBBER :
e l s e
2013-03-29 17:34:58 +00:00
CLOBBER : $( topsrcdir ) /CLOBBER
2013-12-02 21:34:21 +00:00
@echo 'STOP! The CLOBBER file has changed.'
@echo 'Please run the build through a sanctioned build wrapper, such as'
@echo '"mach build" or client.mk.'
2013-03-29 17:34:58 +00:00
@exit 1
2014-01-13 22:38:40 +00:00
e n d i f
2013-03-29 17:34:58 +00:00
2014-02-11 01:37:47 +00:00
$(topsrcdir)/configure : $( topsrcdir ) /configure .in
$(topsrcdir)/js/src/configure : $( topsrcdir ) /js /src /configure .in
$(topsrcdir)/configure $(topsrcdir)/js/src/configure :
@echo 'STOP! $^ has changed, and your configure is out of date.'
2013-12-02 21:34:21 +00:00
@echo 'Please rerun autoconf and re-configure your build directory.'
2014-02-11 01:37:47 +00:00
@echo 'To ignore this message, touch "$@",'
2013-12-02 21:34:21 +00:00
@echo 'but your build might not succeed.'
2010-01-23 00:39:13 +00:00
@exit 1
2014-01-13 22:38:40 +00:00
config.status : $( configure_dir ) /configure
2014-02-11 01:37:47 +00:00
js/src/config.status : $( topsrcdir ) /js /src /configure
config.status js/src/config.status :
@echo 'STOP! $^ has changed and needs to be run again.'
@echo 'Please rerun it.'
@echo 'To ignore this message, touch "$(CURDIR)/$@",'
2013-12-02 21:34:21 +00:00
@echo 'but your build might not succeed.'
2010-01-23 00:39:13 +00:00
@exit 1
2013-10-29 21:53:52 +00:00
# Regenerate the build backend if it is out of date. We only have this rule in
# this main make file because having it in rules.mk and applied to partial tree
# builds resulted in a world of hurt. Gory details are in bug 877308.
#
# The mach build driver will ensure the backend is up to date for partial tree
# builds. This cleanly avoids most of the pain.
backend.RecursiveMakeBackend :
2013-12-02 21:34:21 +00:00
@echo 'Build configuration changed. Regenerating backend.'
2013-11-06 21:16:44 +00:00
$( PYTHON) config.status
2013-10-29 21:53:52 +00:00
Makefile : backend .RecursiveMakeBackend
@$( TOUCH) $@
i n c l u d e b a c k e n d . R e c u r s i v e M a k e B a c k e n d . p p
default :: backend .RecursiveMakeBackend
2013-09-17 00:49:44 +00:00
install_manifests := bin idl include public private sdk
install_manifest_depends = \
CLOBBER \
2014-01-13 22:38:40 +00:00
$( configure_dir) /configure \
2013-09-17 00:49:44 +00:00
config.status \
2013-10-28 23:00:30 +00:00
backend.RecursiveMakeBackend \
2013-09-17 00:49:44 +00:00
$( NULL)
2014-02-11 01:37:47 +00:00
i f n d e f J S _ S T A N D A L O N E
install_manifest_depends += \
$( topsrcdir) /js/src/configure \
js/src/config.status \
$( NULL)
2013-09-30 23:25:38 +00:00
e n d i f
2013-09-17 00:49:44 +00:00
.PHONY : install -manifests
install-manifests : $( addprefix install -dist -,$ ( install_manifests ) )
2014-01-13 22:38:40 +00:00
# process_install_manifest needs to be invoked with --no-remove when building
# js as standalone because automated builds are building nspr separately and
2014-02-11 01:37:47 +00:00
# that would remove the resulting files.
2014-01-13 22:38:40 +00:00
# Eventually, a standalone js build would just be able to build nspr itself,
2014-02-11 01:37:47 +00:00
# removing the need for the former.
2014-02-11 01:37:47 +00:00
i f d e f J S _ S T A N D A L O N E
2014-01-13 22:38:40 +00:00
NO_REMOVE = 1
e n d i f
2013-09-17 00:49:44 +00:00
.PHONY : $( addprefix install -dist -,$ ( install_manifests ) )
$(addprefix install-dist-,$(install_manifests)) : install -dist -%: $( install_manifest_depends )
2014-02-11 01:37:47 +00:00
$( call py_action,process_install_manifest,$( if $( NO_REMOVE) ,--no-remove ) $( DIST) /$* _build_manifests/install/dist_$* )
2013-09-17 00:49:44 +00:00
.PHONY : install -tests
install-manifests : install -tests
install-tests : $( install_manifest_depends )
2014-02-11 01:37:47 +00:00
$( call py_action,process_install_manifest,$( if $( NO_REMOVE) ,--no-remove ) _tests _build_manifests/install/tests)
2013-09-17 00:49:44 +00:00
2013-09-24 22:05:43 +00:00
# _tests should be purged during cleaning. However, we don't want it purged
# during PGO builds because it contains some auto-generated files.
i f n e q ( $( filter -out maybe_clobber_profiledbuild ,$ ( MAKECMDGOALS ) ) , )
GARBAGE_DIRS += _tests
e n d i f
2013-09-17 00:49:44 +00:00
# Windows PGO builds don't perform a clean before the 2nd pass. So, we want
# to preserve content for the 2nd pass on Windows. Everywhere else, we always
# process the install manifests as part of export.
i f d e f M O Z _ P R O F I L E _ U S E
i f n d e f N O _ P R O F I L E _ G U I D E D _ O P T I M I Z E
i f n e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
export :: install -manifests
2013-10-01 23:53:23 +00:00
binaries ::
@$( MAKE) install-manifests NO_REMOVE = 1
2013-09-17 00:49:44 +00:00
e n d i f
e n d i f
e l s e # !MOZ_PROFILE_USE (normal build)
export :: install -manifests
2013-10-01 23:53:23 +00:00
binaries ::
@$( MAKE) install-manifests NO_REMOVE = 1
2013-09-17 00:49:44 +00:00
e n d i f
# For historical reasons that are unknown, $(DIST)/sdk is always blown away
# with no regard for PGO passes. This decision could probably be revisited.
export :: install -dist -sdk
2002-04-25 20:40:00 +00:00
2014-02-11 01:37:47 +00:00
i f n d e f J S _ S T A N D A L O N E
2008-12-19 14:50:24 +00:00
i f d e f E N A B L E _ T E S T S
# Additional makefile targets to call automated test suites
i n c l u d e $( topsrcdir ) / t e s t i n g / t e s t s u i t e - t a r g e t s . m k
e n d i f
2014-01-13 22:38:40 +00:00
e n d i f
2008-12-19 14:50:24 +00:00
2013-09-05 06:07:57 +00:00
default all ::
2013-11-07 01:37:45 +00:00
$( call BUILDSTATUS,TIERS export $( if $( COMPILE_ENVIRONMENT) ,$( if $( MOZ_PSEUDO_DERECURSE) ,compile ) ) libs tools)
2013-08-20 20:03:39 +00:00
2013-09-06 00:17:59 +00:00
i n c l u d e $( topsrcdir ) / c o n f i g / r u l e s . m k
2013-08-20 20:03:39 +00:00
2000-12-12 21:28:24 +00:00
distclean ::
2013-08-22 06:55:59 +00:00
$( RM) $( DIST_GARBAGE)
2002-03-01 01:01:42 +00:00
2007-05-02 18:45:36 +00:00
i f e q ( $( OS_ARCH ) , W I N N T )
# we want to copy PDB files on Windows
2011-01-25 20:14:30 +00:00
MAKE_SYM_STORE_ARGS := -c --vcs-info
2008-02-27 00:54:47 +00:00
i f d e f P D B S T R _ P A T H
MAKE_SYM_STORE_ARGS += -i
e n d i f
2010-09-23 16:53:52 +00:00
DUMP_SYMS_BIN ?= $( topsrcdir) /toolkit/crashreporter/tools/win32/dump_syms_vc$( _MSC_VER) .exe
2007-06-27 10:25:14 +00:00
# PDB files don't get moved to dist, so we need to scan the whole objdir
MAKE_SYM_STORE_PATH := .
2007-05-02 18:45:36 +00:00
e n d i f
i f e q ( $( OS_ARCH ) , D a r w i n )
# need to pass arch flags for universal builds
i f d e f U N I V E R S A L _ B I N A R Y
2013-12-02 21:34:21 +00:00
MAKE_SYM_STORE_ARGS := -c -a 'i386 x86_64' --vcs-info
2007-06-27 10:25:14 +00:00
MAKE_SYM_STORE_PATH := $( DIST) /universal
2007-05-02 18:45:36 +00:00
e l s e
2009-03-11 15:56:57 +00:00
MAKE_SYM_STORE_ARGS := -c -a $( OS_TEST) --vcs-info
2007-06-27 10:25:14 +00:00
MAKE_SYM_STORE_PATH := $( DIST) /bin
2007-05-02 18:45:36 +00:00
e n d i f
2007-08-19 18:06:53 +00:00
DUMP_SYMS_BIN ?= $( DIST) /host/bin/dump_syms
2007-05-02 18:45:36 +00:00
e n d i f
2008-03-20 01:13:36 +00:00
i f e q ( , $( filter -out Linux SunOS ,$ ( OS_ARCH ) ) )
2009-03-11 15:56:57 +00:00
MAKE_SYM_STORE_ARGS := -c --vcs-info
2007-08-19 18:06:53 +00:00
DUMP_SYMS_BIN ?= $( DIST) /host/bin/dump_syms
2007-06-27 10:25:14 +00:00
MAKE_SYM_STORE_PATH := $( DIST) /bin
2007-05-22 20:20:55 +00:00
e n d i f
2002-03-01 01:01:42 +00:00
2009-02-17 07:46:32 +00:00
SYM_STORE_SOURCE_DIRS := $( topsrcdir)
2014-02-11 01:37:47 +00:00
i f n d e f J S _ S T A N D A L O N E
2009-02-17 14:18:50 +00:00
i n c l u d e $( topsrcdir ) / t o o l k i t / m o z a p p s / i n s t a l l e r / p a c k a g e - n a m e . m k
2007-05-28 01:57:56 +00:00
i f d e f M O Z _ S Y M B O L S _ E X T R A _ B U I L D I D
EXTRA_BUILDID := -$( MOZ_SYMBOLS_EXTRA_BUILDID)
e n d i f
2011-05-19 20:29:50 +00:00
SYMBOL_INDEX_NAME = \
2012-05-14 16:04:37 +00:00
$( MOZ_APP_NAME) -$( MOZ_APP_VERSION) -$( OS_TARGET) -$( BUILDID) -$( CPU_ARCH) $( EXTRA_BUILDID) -symbols.txt
2007-09-10 17:36:17 +00:00
2007-01-11 23:42:21 +00:00
buildsymbols :
2007-08-08 15:19:57 +00:00
i f d e f M O Z _ C R A S H R E P O R T E R
2007-03-26 14:55:27 +00:00
echo building symbol store
2011-04-03 07:16:49 +00:00
$( RM) -r $( DIST) /crashreporter-symbols
2013-12-02 21:34:21 +00:00
$( RM) '$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip'
2009-03-10 17:36:14 +00:00
$( NSINSTALL) -D $( DIST) /crashreporter-symbols
2013-12-02 21:34:21 +00:00
OBJCOPY = '$(OBJCOPY)' \
2009-02-17 07:46:32 +00:00
$( PYTHON) $( topsrcdir) /toolkit/crashreporter/tools/symbolstore.py \
$( MAKE_SYM_STORE_ARGS) \
$( foreach dir,$( SYM_STORE_SOURCE_DIRS) ,-s $( dir) ) \
$( DUMP_SYMS_BIN) \
2009-03-10 17:36:14 +00:00
$( DIST) /crashreporter-symbols \
2012-08-31 19:52:43 +00:00
$( MAKE_SYM_STORE_PATH) | grep -iv test > \
2009-03-10 17:36:14 +00:00
$( DIST) /crashreporter-symbols/$( SYMBOL_INDEX_NAME)
2007-01-11 23:42:21 +00:00
echo packing symbols
2009-11-04 14:59:47 +00:00
$( NSINSTALL) -D $( DIST) /$( PKG_PATH)
2009-03-10 17:36:14 +00:00
cd $( DIST) /crashreporter-symbols && \
2013-12-02 21:34:21 +00:00
zip -r9D '../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip' . -x '*test*' -x '*Test*'
2010-04-23 20:00:06 +00:00
cd $( DIST) /crashreporter-symbols && \
2013-12-02 21:34:21 +00:00
grep 'sym' $( SYMBOL_INDEX_NAME) > $( SYMBOL_INDEX_NAME) .tmp && \
2010-12-06 15:16:30 +00:00
mv $( SYMBOL_INDEX_NAME) .tmp $( SYMBOL_INDEX_NAME)
cd $( DIST) /crashreporter-symbols && \
2013-12-02 21:34:21 +00:00
zip -r9D '../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip' . -i '*.sym' -i '*.txt' -x '*test*' -x '*Test*'
2007-08-08 15:19:57 +00:00
e n d i f # MOZ_CRASHREPORTER
2007-01-11 23:42:21 +00:00
2006-12-06 01:16:05 +00:00
uploadsymbols :
2007-08-08 15:19:57 +00:00
i f d e f M O Z _ C R A S H R E P O R T E R
2013-12-02 21:34:21 +00:00
$( SHELL) $( topsrcdir) /toolkit/crashreporter/tools/upload_symbols.sh $( SYMBOL_INDEX_NAME) '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip'
2006-12-06 01:16:05 +00:00
e n d i f
2013-09-20 01:44:11 +00:00
# MOZ_SOURCE_STAMP is defined in package-name.mk with a deferred assignment.
# exporting it makes make run its $(shell) command for each invoked submake,
# so transform it to an immediate assignment.
MOZ_SOURCE_STAMP := $( MOZ_SOURCE_STAMP)
2009-12-20 14:25:48 +00:00
export MOZ_SOURCE_STAMP
2014-01-13 22:38:40 +00:00
e n d i f
2009-12-20 14:25:48 +00:00
2011-08-31 14:49:42 +00:00
#XXX: this is a hack, since we don't want to clobber for MSVC
# PGO support, but we can't do this test in client.mk
i f n e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
# No point in clobbering if PGO has been explicitly disabled.
i f n d e f N O _ P R O F I L E _ G U I D E D _ O P T I M I Z E
maybe_clobber_profiledbuild : clean
e l s e
maybe_clobber_profiledbuild :
e n d i f
e l s e
maybe_clobber_profiledbuild :
2011-11-04 21:26:53 +00:00
$( RM) $( DIST) /bin/*.pgc
2013-12-02 21:34:21 +00:00
find $( DIST) /$( MOZ_APP_NAME) -name '*.pgc' -exec mv { } $( DIST) /bin \;
2011-08-31 14:49:42 +00:00
e n d i f
.PHONY : maybe_clobber_profiledbuild
2010-10-13 12:43:03 +00:00
# Look for R_386_PC32 relocations in shared libs, these
# break x86_64 builds and SELinux users.
i f e q ( $( OS_TARGET ) _ $( TARGET_XPCOM_ABI ) , L i n u x _ x 8 6 - g c c 3 )
2013-12-03 20:51:08 +00:00
check ::
2013-12-02 21:34:21 +00:00
@relcount= ` find $( DIST) /bin -name '*.so' | xargs objdump -R | grep R_386_PC32 | wc -l` && if test $$ relcount -gt 0; then echo 'FAILED: R_386_PC32 relocations detected in a shared library. Did you use a system header without adding it to config/system-headers?' ; exit 1; else echo 'PASSED' ; fi
2010-10-13 12:43:03 +00:00
e n d i f
2012-07-09 13:47:26 +00:00
2014-02-11 01:37:47 +00:00
i f d e f J S _ S T A N D A L O N E
2014-01-13 22:38:40 +00:00
# Delegate js-specific rules to js
check-% :
$( MAKE) -C js/src $@
source-package install :
$( MAKE) -C js/src $@
# Every export rule depends on config/export, but the rule for config/export
# doesn't exist when building js non-standalone.
.PHONY : config /export
config/export :
2014-02-11 01:37:47 +00:00
e n d i f
2013-03-04 19:11:55 +00:00
2013-09-20 04:30:17 +00:00
i f d e f M O Z _ P S E U D O _ D E R E C U R S E
# Interdependencies for parallel export.
2013-11-04 22:39:28 +00:00
js/xpconnect/src/export : dom /bindings /export xpcom /xpidl /export
2013-09-26 23:05:10 +00:00
accessible/src/xpcom/export : xpcom /xpidl /export
2013-09-20 04:30:17 +00:00
js/src/export : mfbt /export
2013-10-11 23:29:46 +00:00
i f d e f E N A B L E _ C L A N G _ P L U G I N
js/src/export config/export : build /clang -plugin /export
e n d i f
2013-09-20 04:30:17 +00:00
e n d i f