2007-03-22 10:30:00 -07:00
#
2012-05-21 04:12:37 -07: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/.
2007-03-22 10:30:00 -07:00
2012-08-04 11:26:44 -07:00
DEPTH = @DEPTH@
2007-03-22 10:30:00 -07:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
2009-03-11 13:32:10 -07: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
i f e q ( , $( filter -out 3.78 3.79,$ ( MAKE_VERSION ) ) )
$( error GNU Make 3.80 or higher is required )
e n d i f
e n d i f
2007-03-22 10:30:00 -07:00
i n c l u d e $( DEPTH ) / c o n f i g / a u t o c o n f . m k
2008-12-19 06:50:24 -08:00
default ::
2007-03-22 10:30:00 -07:00
TIERS += base
#
# tier "base" - basic setup
2007-09-10 10:36:17 -07:00
#
2007-03-22 10:30:00 -07:00
tier_base_dirs = \
2011-12-27 23:24:02 -08:00
config \
build \
probes \
mfbt \
$( NULL)
2007-03-22 10:30:00 -07:00
2010-03-24 03:07:45 -07:00
i f n d e f L I B X U L _ S D K
2011-11-10 16:17:46 -08:00
i f e q ( a n d r o i d , $( MOZ_WIDGET_TOOLKIT ) )
2011-12-27 23:24:02 -08:00
tier_base_dirs += \
other-licenses/android \
$( NULL)
2010-10-15 11:28:32 -07:00
e n d i f
2012-03-23 00:40:14 -07:00
i f e q ( g o n k , $( MOZ_WIDGET_TOOLKIT ) )
tier_base_dirs += \
other-licenses/android \
$( NULL)
e n d i f
2010-10-15 11:28:32 -07:00
2011-12-27 23:24:02 -08:00
i f d e f M O Z _ M E M O R Y
2012-06-07 01:41:58 -07:00
tier_base_dirs += memory/mozjemalloc
2012-06-07 01:41:59 -07:00
i f d e f M O Z _ J E M A L L O C
tier_base_dirs += memory/jemalloc
e n d i f
2012-03-31 00:23:19 -07:00
tier_base_dirs += memory/build
2011-12-27 23:24:02 -08:00
e n d i f
2012-07-11 23:30:59 -07:00
i f n d e f M O Z _ N A T I V E _ Z L I B
tier_base_dirs += modules/zlib
e n d i f
2011-12-27 23:24:02 -08:00
tier_base_dirs += \
mozglue \
memory/mozalloc \
$( NULL)
2010-03-24 03:07:45 -07:00
e n d i f
2009-07-13 04:48:46 -07:00
i f d e f C O M P I L E _ E N V I R O N M E N T
2007-03-22 10:30:00 -07:00
i n c l u d e $( topsrcdir ) / $( MOZ_BUILD_APP ) / b u i l d . m k
2009-07-13 04:48:46 -07:00
e n d i f
2007-03-22 10:30:00 -07:00
2008-12-19 06:50:24 -08:00
i n c l u d e $( topsrcdir ) / c o n f i g / c o n f i g . m k
2008-03-14 08:18:24 -07:00
GARBAGE_DIRS += dist _javagen _profile _tests staticlib
2012-08-28 23:55:58 -07: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 11:10:24 -08:00
config/autoconf.mk \
2007-03-22 10:30:00 -07:00
unallmakefiles mozilla-config.h \
2008-01-28 14:05:47 -08:00
netwerk/necko-config.h xpcom/xpcom-config.h xpcom/xpcom-private.h \
2007-09-10 10:36:17 -07:00
$( topsrcdir) /.mozconfig.mk $( topsrcdir) /.mozconfig.out
2007-03-22 10:30:00 -07:00
2010-10-07 09:10:54 -07:00
default alldep all :: $( topsrcdir ) /configure config .status
2011-04-03 00:16:49 -07:00
$( RM) -r $( DIST) /sdk
$( RM) -r $( DIST) /include
$( RM) -r $( DIST) /private
$( RM) -r $( DIST) /public
2012-08-08 00:33:31 -07:00
$( RM) $( DIST) /chrome.manifest
2011-04-03 00:16:49 -07:00
$( RM) -r _tests
2008-12-19 06:50:24 -08:00
2010-01-22 16:39:13 -08:00
$(topsrcdir)/configure : $( topsrcdir ) /configure .in
@echo "STOP! configure.in has changed, and your configure is out of date."
@echo "Please rerun autoconf and re-configure your build directory."
@echo "To ignore this message, touch 'configure' in the source directory,"
@echo "but your build might not succeed."
@exit 1
config.status : $( topsrcdir ) /configure
@echo "STOP! configure has changed and needs to be run in this build directory."
@echo "Please rerun configure."
@echo "To ignore this message, touch 'config.status' in the build directory,"
@echo "but your build might not succeed."
@exit 1
2007-03-22 10:30:00 -07:00
# Build pseudo-external modules first when export is explicitly called
export ::
2011-04-03 00:16:49 -07:00
$( RM) -r $( DIST) /sdk
2007-03-22 10:30:00 -07:00
$( MAKE) -C config export
$( MAKE) tier_nspr
2008-12-19 06:50:24 -08: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
2007-03-22 10:30:00 -07:00
i n c l u d e $( topsrcdir ) / c o n f i g / r u l e s . m k
distclean ::
cat unallmakefiles | $( XARGS) rm -f
2011-04-03 00:16:49 -07:00
$( RM) unallmakefiles $( DIST_GARBAGE)
2007-03-22 10:30:00 -07:00
2007-05-02 11:45:36 -07:00
i f e q ( $( OS_ARCH ) , W I N N T )
# we want to copy PDB files on Windows
2011-01-25 12:14:30 -08:00
MAKE_SYM_STORE_ARGS := -c --vcs-info
2008-02-26 16:54:47 -08: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 09:53:52 -07:00
DUMP_SYMS_BIN ?= $( topsrcdir) /toolkit/crashreporter/tools/win32/dump_syms_vc$( _MSC_VER) .exe
2007-06-27 03:25:14 -07:00
# PDB files don't get moved to dist, so we need to scan the whole objdir
MAKE_SYM_STORE_PATH := .
2007-05-02 11:45:36 -07: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
2010-09-26 15:06:01 -07:00
MAKE_SYM_STORE_ARGS := -c -a "i386 x86_64" --vcs-info
2007-06-27 03:25:14 -07:00
MAKE_SYM_STORE_PATH := $( DIST) /universal
2007-05-02 11:45:36 -07:00
e l s e
2009-03-11 08:56:57 -07:00
MAKE_SYM_STORE_ARGS := -c -a $( OS_TEST) --vcs-info
2007-06-27 03:25:14 -07:00
MAKE_SYM_STORE_PATH := $( DIST) /bin
2007-05-02 11:45:36 -07:00
e n d i f
2007-08-19 11:06:53 -07:00
DUMP_SYMS_BIN ?= $( DIST) /host/bin/dump_syms
2007-05-02 11:45:36 -07:00
e n d i f
2008-03-19 18:13:36 -07:00
i f e q ( , $( filter -out Linux SunOS ,$ ( OS_ARCH ) ) )
2009-03-11 08:56:57 -07:00
MAKE_SYM_STORE_ARGS := -c --vcs-info
2007-08-19 11:06:53 -07:00
DUMP_SYMS_BIN ?= $( DIST) /host/bin/dump_syms
2007-06-27 03:25:14 -07:00
MAKE_SYM_STORE_PATH := $( DIST) /bin
2007-05-22 13:20:55 -07:00
e n d i f
2007-03-22 10:30:00 -07:00
2009-02-16 23:46:32 -08:00
SYM_STORE_SOURCE_DIRS := $( topsrcdir)
2009-02-17 06:18:50 -08: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-27 18:57:56 -07: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 13:29:50 -07:00
SYMBOL_INDEX_NAME = \
2012-05-14 09:04:37 -07:00
$( MOZ_APP_NAME) -$( MOZ_APP_VERSION) -$( OS_TARGET) -$( BUILDID) -$( CPU_ARCH) $( EXTRA_BUILDID) -symbols.txt
2007-09-10 10:36:17 -07:00
2007-03-22 10:30:00 -07:00
buildsymbols :
2007-08-08 08:19:57 -07:00
i f d e f M O Z _ C R A S H R E P O R T E R
2011-03-14 06:41:41 -07:00
i f d e f U S E _ E L F _ H A C K
2011-11-17 06:10:04 -08:00
ifeq ( mobile,$( MOZ_BUILD_APP) )
$( MAKE) -C mobile/xul/installer elfhack
else
$( MAKE) -C $( MOZ_BUILD_APP) /installer elfhack
endif
2011-03-14 06:41:41 -07:00
e n d i f
2007-03-26 07:55:27 -07:00
echo building symbol store
2011-04-03 00:16:49 -07:00
$( RM) -r $( DIST) /crashreporter-symbols
$( RM) " $( DIST) / $( SYMBOL_ARCHIVE_BASENAME) .zip "
2009-03-10 10:36:14 -07:00
$( NSINSTALL) -D $( DIST) /crashreporter-symbols
2011-10-06 00:08:14 -07:00
OBJCOPY = " $( OBJCOPY) " \
2009-02-16 23:46:32 -08:00
$( PYTHON) $( topsrcdir) /toolkit/crashreporter/tools/symbolstore.py \
$( MAKE_SYM_STORE_ARGS) \
2012-05-24 08:58:35 -07:00
--exclude= "*test*" --exclude= "*Test*" \
2009-02-16 23:46:32 -08:00
$( foreach dir,$( SYM_STORE_SOURCE_DIRS) ,-s $( dir) ) \
$( DUMP_SYMS_BIN) \
2009-03-10 10:36:14 -07:00
$( DIST) /crashreporter-symbols \
2009-02-16 23:46:32 -08:00
$( MAKE_SYM_STORE_PATH) > \
2009-03-10 10:36:14 -07:00
$( DIST) /crashreporter-symbols/$( SYMBOL_INDEX_NAME)
2007-03-22 10:30:00 -07:00
echo packing symbols
2009-11-04 06:59:47 -08:00
$( NSINSTALL) -D $( DIST) /$( PKG_PATH)
2009-03-10 10:36:14 -07:00
cd $( DIST) /crashreporter-symbols && \
2010-04-23 13:00:06 -07:00
zip -r9D " ../ $( PKG_PATH) $( SYMBOL_FULL_ARCHIVE_BASENAME) .zip " .
cd $( DIST) /crashreporter-symbols && \
2010-12-06 07:16:30 -08:00
grep "sym" $( SYMBOL_INDEX_NAME) > $( SYMBOL_INDEX_NAME) .tmp && \
mv $( SYMBOL_INDEX_NAME) .tmp $( SYMBOL_INDEX_NAME)
cd $( DIST) /crashreporter-symbols && \
zip -r9D " ../ $( PKG_PATH) $( SYMBOL_ARCHIVE_BASENAME) .zip " . -i "*.sym" -i "*.txt"
2007-08-08 08:19:57 -07:00
e n d i f # MOZ_CRASHREPORTER
2007-03-22 10:30:00 -07:00
uploadsymbols :
2007-08-08 08:19:57 -07:00
i f d e f M O Z _ C R A S H R E P O R T E R
2011-05-19 13:29:50 -07:00
$( SHELL) $( topsrcdir) /toolkit/crashreporter/tools/upload_symbols.sh $( SYMBOL_INDEX_NAME) " $( DIST) / $( PKG_PATH) $( SYMBOL_FULL_ARCHIVE_BASENAME) .zip "
2007-03-22 10:30:00 -07:00
e n d i f
2011-06-28 04:55:56 -07:00
codesighs :
$( MAKE) -C $( MOZ_BUILD_APP) /installer codesighs
2010-02-25 08:19:35 -08:00
# defined in package-name.mk
2009-12-20 06:25:48 -08:00
export MOZ_SOURCE_STAMP
2011-08-31 07:49:42 -07: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 14:26:53 -07:00
$( RM) $( DIST) /bin/*.pgc
find $( DIST) /$( MOZ_APP_NAME) -name "*.pgc" -exec mv { } $( DIST) /bin \;
2011-08-31 07:49:42 -07:00
e n d i f
2012-05-03 17:06:14 -07:00
# put in our default gdbinit so that the gdb debugging experience is happier.
libs :: .gdbinit
$( INSTALL) $< $( DIST) /bin
2011-08-31 07:49:42 -07:00
.PHONY : maybe_clobber_profiledbuild
2010-10-13 05:43:03 -07: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 )
scheck ::
@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
e n d i f
2012-07-09 06:47:26 -07:00
js/src/Makefile : subsrcdir := js /src