1998-03-28 05:44:41 +03:00
#
2004-04-18 18:21:17 +04:00
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
1998-03-28 05:44:41 +03:00
#
2004-04-18 18:21:17 +04:00
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
1998-03-28 05:44:41 +03:00
#
2004-04-18 18:21:17 +04:00
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
1999-11-06 06:40:37 +03:00
#
2004-04-18 18:21:17 +04:00
# The Original Code is mozilla.org code.
1998-03-28 05:44:41 +03:00
#
2004-04-18 18:21:17 +04:00
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 1998
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
2006-03-31 08:41:00 +04:00
# Benjamin Smedberg <benjamin@smedbergs.us>
2004-04-18 18:21:17 +04:00
#
# Alternatively, the contents of this file may be used under the terms of
# either of the GNU General Public License Version 2 or later (the "GPL"),
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
1998-03-28 05:44:41 +03:00
#
# config.mk
#
# Determines the platform and builds the macros needed to load the
# appropriate platform-specific .mk file, then defines all (most?)
# of the generic macros.
#
2000-03-14 06:00:38 +03:00
# Define an include-at-most-once flag
2010-08-06 20:21:41 +04:00
#ifdef INCLUDED_CONFIG_MK
#$(error Don't include config.mk twice!)
#endif
2000-03-14 06:00:38 +03:00
INCLUDED_CONFIG_MK = 1
2005-07-23 00:11:37 +04:00
EXIT_ON_ERROR = set -e; # Shell loops continue past errors without this.
1998-08-20 00:42:14 +04:00
i f n d e f t o p s r c d i r
1998-09-05 05:10:54 +04:00
topsrcdir = $( DEPTH)
1998-08-20 00:42:14 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
2000-03-14 06:00:38 +03:00
i f n d e f I N C L U D E D _ A U T O C O N F _ M K
1999-09-30 00:39:46 +04: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
1999-09-03 02:02:46 +04:00
e n d i f
2008-06-06 23:31:11 +04:00
COMMA = ,
2007-03-26 22:15:02 +04:00
# Sanity check some variables
CHECK_VARS := \
XPI_NAME \
LIBRARY_NAME \
MODULE \
DEPTH \
SHORT_LIBNAME \
XPI_PKGNAME \
INSTALL_EXTENSION_ID \
2008-12-24 22:04:43 +03:00
SHARED_LIBRARY_NAME \
STATIC_LIBRARY_NAME \
2007-03-26 22:15:02 +04:00
$( NULL)
# checks for internal spaces or trailing spaces in the variable
# named by $x
check-variable = $( if $( filter-out 0 1,$( words $( $( x) ) z) ) ,$( error Spaces are not allowed in $( x) ) )
$( foreach x ,$ ( CHECK_VARS ) ,$ ( check -variable ) )
2009-03-12 01:39:24 +03:00
core_abspath = $( if $( findstring :,$( 1) ) ,$( 1) ,$( if $( filter /%,$( 1) ) ,$( 1) ,$( CURDIR) /$( 1) ) )
2011-03-21 04:32:19 +03:00
nullstr :=
space := $( nullstr) # EOL
core_winabspath = $( firstword $( subst /, ,$( call core_abspath,$( 1) ) ) ) :$( subst $( space) ,,$( patsubst %,\\ %,$( wordlist 2,$( words $( subst /, ,$( call core_abspath,$( 1) ) ) ) , $( strip $( subst /, ,$( call core_abspath,$( 1) ) ) ) ) ) )
2005-02-19 01:17:37 +03:00
# FINAL_TARGET specifies the location into which we copy end-user-shipped
# build products (typelibs, components, chrome).
#
# It will usually be the well-loved $(DIST)/bin, today, but can also be an
# XPI-contents staging directory for ambitious and right-thinking extensions.
2005-04-21 03:10:56 +04:00
FINAL_TARGET = $( if $( XPI_NAME) ,$( DIST) /xpi-stage/$( XPI_NAME) ,$( DIST) /bin)
2005-02-19 01:17:37 +03:00
2010-06-25 16:27:10 +04:00
i f d e f X P I _ N A M E
DEFINES += -DXPI_NAME= $( XPI_NAME)
e n d i f
2002-11-14 23:23:26 +03:00
# The VERSION_NUMBER is suffixed onto the end of the DLLs we ship.
VERSION_NUMBER = 50
2005-07-06 00:37:27 +04:00
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
2005-06-02 08:00:37 +04:00
win_srcdir := $( subst $( topsrcdir) ,$( WIN_TOP_SRC) ,$( srcdir) )
BUILD_TOOLS = $( WIN_TOP_SRC) /build/unix
e l s e
win_srcdir := $( srcdir)
2000-03-14 09:16:27 +03:00
BUILD_TOOLS = $( topsrcdir) /build/unix
2005-06-02 08:00:37 +04:00
e n d i f
2004-03-23 11:41:30 +03:00
CONFIG_TOOLS = $( MOZ_BUILD_ROOT) /config
2000-03-14 09:16:27 +03:00
AUTOCONF_TOOLS = $( topsrcdir) /build/autoconf
1998-06-02 06:50:14 +04:00
i f e q ( $( OS_ARCH ) , Q N X )
1999-06-16 03:56:05 +04:00
i f e q ( $( OS_TARGET ) , N T O )
LD := qcc -Vgcc_ntox86 -nostdlib
e l s e
1999-06-04 05:42:00 +04:00
LD := $( CC)
1998-06-02 06:50:14 +04:00
e n d i f
2000-03-31 05:24:48 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
#
# Strip off the excessively long version numbers on these platforms,
# but save the version to allow multiple versions of the same base
# platform to be built in the same tree.
#
1998-09-05 08:16:15 +04:00
i f n e q ( , $( filter FreeBSD HP -UX IRIX Linux NetBSD OpenBSD OSF 1 SunOS ,$ ( OS_ARCH ) ) )
1998-03-28 05:44:41 +03:00
OS_RELEASE := $( basename $( OS_RELEASE) )
1998-07-22 09:38:53 +04:00
# Allow the user to ignore the OS_VERSION, which is usually irrelevant.
2000-03-02 05:11:34 +03:00
i f d e f W A N T _ M O Z I L L A _ C O N F I G _ O S _ V E R S I O N
OS_VERS := $( suffix $( OS_RELEASE) )
1998-03-28 05:44:41 +03:00
OS_VERSION := $( shell echo $( OS_VERS) | sed 's/-.*//' )
e n d i f
1998-07-22 09:38:53 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
OS_CONFIG := $( OS_ARCH) $( OS_RELEASE)
2001-04-28 22:51:31 +04:00
FINAL_LINK_LIBS = $( DEPTH) /config/final-link-libs
FINAL_LINK_COMPS = $( DEPTH) /config/final-link-comps
2001-06-21 00:21:49 +04:00
FINAL_LINK_COMP_NAMES = $( DEPTH) /config/final-link-comp-names
2006-01-28 20:32:37 +03:00
MOZ_UNICHARUTIL_LIBS = $( LIBXUL_DIST) /lib/$( LIB_PREFIX) unicharutil_s.$( LIB_SUFFIX)
2001-12-15 02:49:04 +03:00
MOZ_WIDGET_SUPPORT_LIBS = $( DIST) /lib/$( LIB_PREFIX) widgetsupport_s.$( LIB_SUFFIX)
2001-10-27 19:11:07 +04:00
2008-09-15 20:03:30 +04:00
i f d e f M O Z _ M E M O R Y
2009-04-24 21:31:18 +04:00
i f n e q ( , $( filter -out WINNT WINCE ,$ ( OS_ARCH ) ) )
2009-08-17 01:54:45 +04:00
JEMALLOC_LIBS = $( MKSHLIB_FORCE_ALL) $( call EXPAND_MOZLIBNAME,jemalloc) $( MKSHLIB_UNFORCE_ALL)
2010-11-17 11:56:19 +03:00
# If we are linking jemalloc into a program, we want the jemalloc symbols
# to be exported
i f n e q ( , $( SIMPLE_PROGRAMS ) $( PROGRAM ) )
JEMALLOC_LIBS += $( MOZ_JEMALLOC_STANDALONE_GLUE_LDOPTS)
e n d i f
2008-09-15 20:03:30 +04:00
e n d i f
e n d i f
2010-08-05 03:59:23 +04:00
CC := $( CC_WRAPPER) $( CC)
CXX := $( CXX_WRAPPER) $( CXX)
2011-04-03 11:16:49 +04:00
MKDIR ?= mkdir
SLEEP ?= sleep
TOUCH ?= touch
2010-08-05 03:59:23 +04:00
2000-05-16 13:31:58 +04:00
# determine debug-related options
2001-12-09 10:08:58 +03:00
_DEBUG_CFLAGS :=
_DEBUG_LDFLAGS :=
2000-05-16 13:31:58 +04:00
i f d e f M O Z _ D E B U G
2010-03-02 14:24:00 +03:00
_DEBUG_CFLAGS += $( MOZ_DEBUG_ENABLE_DEFS) $( MOZ_DEBUG_FLAGS)
_DEBUG_LDFLAGS += $( MOZ_DEBUG_LDFLAGS)
2006-05-16 17:53:54 +04:00
XULPPFLAGS += $( MOZ_DEBUG_ENABLE_DEFS)
2000-05-16 13:31:58 +04:00
e l s e
2001-12-09 10:08:58 +03:00
_DEBUG_CFLAGS += $( MOZ_DEBUG_DISABLE_DEFS)
2006-05-16 17:53:54 +04:00
XULPPFLAGS += $( MOZ_DEBUG_DISABLE_DEFS)
2010-03-02 14:24:00 +03:00
ifdef MOZ_DEBUG_SYMBOLS
_DEBUG_CFLAGS += $( MOZ_DEBUG_FLAGS)
_DEBUG_LDFLAGS += $( MOZ_DEBUG_LDFLAGS)
2000-05-16 13:31:58 +04:00
endif
e n d i f
2010-08-06 17:51:38 +04:00
MOZALLOC_LIB = $( call EXPAND_LIBNAME_PATH,mozalloc,$( DIST) /lib)
2010-02-12 01:14:38 +03:00
2001-12-09 10:08:58 +03:00
OS_CFLAGS += $( _DEBUG_CFLAGS)
OS_CXXFLAGS += $( _DEBUG_CFLAGS)
OS_LDFLAGS += $( _DEBUG_LDFLAGS)
2000-05-16 13:31:58 +04:00
2009-03-28 05:00:25 +03:00
# XXX: What does this? Bug 482434 filed for better explanation.
2003-03-08 08:18:43 +03:00
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
2002-02-03 06:28:07 +03:00
i f d e f M O Z _ D E B U G
i f n e q ( , $( MOZ_BROWSE_INFO ) $( MOZ_BSCFILE ) )
2005-06-01 18:28:35 +04:00
OS_CFLAGS += -FR
OS_CXXFLAGS += -FR
2002-02-03 06:28:07 +03:00
e n d i f
2008-02-22 14:54:08 +03:00
e l s e # ! MOZ_DEBUG
2009-04-20 14:56:23 +04:00
# We don't build a static CRT when building a custom CRT,
# it appears to be broken. So don't link to jemalloc if
# the Makefile wants static CRT linking.
i f e q ( $( MOZ_MEMORY ) _ $( USE_STATIC_LIBS ) , 1 _ )
# Disable default CRT libs and add the right lib path for the linker
OS_LDFLAGS += $( MOZ_MEMORY_LDFLAGS)
e n d i f
2008-02-22 14:54:08 +03:00
# MOZ_DEBUG_SYMBOLS generates debug symbols in separate PDB files.
# Used for generating an optimized build with debugging symbols.
# Used in the Windows nightlies to generate symbols for crash reporting.
i f d e f M O Z _ D E B U G _ S Y M B O L S
OS_CXXFLAGS += -Zi -UDEBUG -DNDEBUG
2008-03-04 15:00:38 +03:00
OS_CFLAGS += -Zi -UDEBUG -DNDEBUG
2011-02-21 07:04:32 +03:00
i f d e f H A V E _ 6 4 B I T _ O S
OS_LDFLAGS += -DEBUG -OPT:REF,ICF
e l s e
2009-11-23 18:20:21 +03:00
OS_LDFLAGS += -DEBUG -OPT:REF
2004-10-12 04:09:58 +04:00
e n d i f
2011-02-21 07:04:32 +03:00
e n d i f
2004-10-12 04:09:58 +04:00
2004-11-15 11:37:53 +03:00
i f d e f M O Z _ Q U A N T I F Y
2005-06-01 18:28:35 +04:00
# -FIXED:NO is needed for Quantify to work, but it increases the size
2004-10-12 04:09:58 +04:00
# of executables, so only use it if building for Quantify.
2005-06-16 09:05:41 +04:00
WIN32_EXE_LDFLAGS += -FIXED:NO
2004-11-15 11:37:53 +03:00
2005-06-01 18:28:35 +04:00
# We need -OPT:NOICF to prevent identical methods from being merged together.
2004-11-15 11:37:53 +03:00
# Otherwise, Quantify doesn't know which method was actually called when it's
# showing you the profile.
2005-06-01 18:28:35 +04:00
OS_LDFLAGS += -OPT:NOICF
2002-02-03 06:28:07 +03:00
e n d i f
#
# Handle trace-malloc in optimized builds.
# No opt to give sane callstacks.
#
i f d e f N S _ T R A C E _ M A L L O C
2002-02-26 12:26:10 +03:00
MOZ_OPTIMIZE_FLAGS = -Zi -Od -UDEBUG -DNDEBUG
2011-02-21 07:04:32 +03:00
i f d e f H A V E _ 6 4 B I T _ O S
OS_LDFLAGS = -DEBUG -PDB:NONE -OPT:REF,ICF
e l s e
2010-11-06 12:39:47 +03:00
OS_LDFLAGS = -DEBUG -PDB:NONE -OPT:REF
2011-02-21 07:04:32 +03:00
e n d i f
2008-02-22 14:54:08 +03:00
e n d i f # NS_TRACE_MALLOC
2002-02-03 06:28:07 +03:00
e n d i f # MOZ_DEBUG
2003-03-08 08:18:43 +03:00
e n d i f # WINNT && !GNU_CC
2002-02-03 06:28:07 +03:00
2001-06-21 00:21:49 +04:00
#
2001-06-19 02:10:38 +04:00
# Build using PIC by default
# Do not use PIC if not building a shared lib (see exceptions below)
#
2005-10-17 18:57:32 +04:00
i f n d e f B U I L D _ S T A T I C _ L I B S
_ENABLE_PIC = 1
e n d i f
i f n e q ( , $( FORCE_SHARED_LIB ) $( FORCE_USE_PIC ) )
2001-06-19 02:10:38 +04:00
_ENABLE_PIC = 1
e n d i f
2001-06-21 00:21:49 +04:00
# If module is going to be merged into the nsStaticModule,
# make sure that the entry points are translated and
# the module is built static.
i f d e f I S _ C O M P O N E N T
2006-11-13 20:53:01 +03:00
i f d e f E X P O R T _ L I B R A R Y
2005-10-17 18:57:32 +04:00
i f n e q ( , $( BUILD_STATIC_LIBS ) )
2001-06-21 00:21:49 +04:00
i f d e f M O D U L E _ N A M E
DEFINES += -DXPCOM_TRANSLATE_NSGM_ENTRY_POINT= 1
2001-06-19 02:10:38 +04:00
FORCE_STATIC_LIB = 1
2001-03-20 08:42:58 +03:00
e n d i f
e n d i f
2001-06-21 00:21:49 +04:00
e n d i f
2006-11-13 20:53:01 +03:00
e n d i f
2001-06-21 00:21:49 +04:00
# Determine if module being compiled is destined
2004-12-07 01:39:54 +03:00
# to be merged into libxul
2001-06-21 00:21:49 +04:00
2004-12-07 01:39:54 +03:00
i f d e f M O Z _ E N A B L E _ L I B X U L
i f d e f L I B X U L _ L I B R A R Y
2001-06-21 00:21:49 +04:00
i f d e f I S _ C O M P O N E N T
i f d e f M O D U L E _ N A M E
DEFINES += -DXPCOM_TRANSLATE_NSGM_ENTRY_POINT= 1
2004-12-07 01:39:54 +03:00
e l s e
2005-06-15 17:41:39 +04:00
$( error Component makefile does not specify MODULE_NAME .)
2001-06-21 00:21:49 +04:00
e n d i f
e n d i f
FORCE_STATIC_LIB = 1
_ENABLE_PIC = 1
2004-12-09 22:28:35 +03:00
SHORT_LIBNAME =
2001-06-21 00:21:49 +04:00
e n d i f
2003-05-16 10:07:37 +04:00
e n d i f
2005-06-15 17:41:39 +04:00
# If we are building this component into an extension/xulapp, it cannot be
# statically linked. In the future we may want to add a xulapp meta-component
# build option.
i f d e f X P I _ N A M E
2005-06-16 03:42:07 +04:00
_ENABLE_PIC = 1
2005-06-15 17:41:39 +04:00
i f d e f I S _ C O M P O N E N T
EXPORT_LIBRARY =
FORCE_STATIC_LIB =
FORCE_SHARED_LIB = 1
e n d i f
e n d i f
2001-06-19 02:10:38 +04:00
#
# Disable PIC if necessary
#
i f n d e f _ E N A B L E _ P I C
DSO_CFLAGS =
2002-08-31 08:33:02 +04:00
i f e q ( $( OS_ARCH ) _ $( HAVE_GCC 3_ABI ) , D a r w i n _ 1 )
DSO_PIC_CFLAGS = -mdynamic-no-pic
e l s e
2001-06-19 02:10:38 +04:00
DSO_PIC_CFLAGS =
2002-08-31 08:33:02 +04:00
e n d i f
2008-03-06 14:57:22 +03:00
e n d i f
2008-12-24 22:04:43 +03:00
i f n d e f S H A R E D _ L I B R A R Y _ N A M E
i f d e f L I B R A R Y _ N A M E
SHARED_LIBRARY_NAME = $( LIBRARY_NAME)
e n d i f
e n d i f
i f n d e f S T A T I C _ L I B R A R Y _ N A M E
i f d e f L I B R A R Y _ N A M E
STATIC_LIBRARY_NAME = $( LIBRARY_NAME)
e n d i f
e n d i f
2008-03-06 14:57:21 +03:00
# This comes from configure
i f d e f M O Z _ P R O F I L E _ G U I D E D _ O P T I M I Z E _ D I S A B L E
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
2010-07-26 23:21:55 +04:00
# No sense in profiling tools
i f d e f I N T E R N A L _ T O O L S
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
# Don't build SIMPLE_PROGRAMS with PGO, since they don't need it anyway,
# and we don't have the same build logic to re-link them in the second pass.
i f d e f S I M P L E _ P R O G R A M S
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
2011-04-14 13:23:13 +04:00
# No sense in profiling unit tests
i f d e f C P P _ U N I T _ T E S T S
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
2008-02-17 01:23:07 +03:00
# Enable profile-based feedback
2008-02-21 02:29:11 +03:00
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
2004-03-21 05:31:17 +03:00
i f d e f M O Z _ P R O F I L E _ G E N E R A T E
2008-02-17 01:23:07 +03:00
OS_CFLAGS += $( PROFILE_GEN_CFLAGS)
OS_CXXFLAGS += $( PROFILE_GEN_CFLAGS)
2008-02-21 02:29:11 +03:00
OS_LDFLAGS += $( PROFILE_GEN_LDFLAGS)
i f e q ( W I N N T , $( OS_ARCH ) )
AR_FLAGS += -LTCG
e n d i f
e n d i f # MOZ_PROFILE_GENERATE
2008-02-17 01:23:07 +03:00
2004-03-21 05:31:17 +03:00
i f d e f M O Z _ P R O F I L E _ U S E
2008-02-17 01:23:07 +03:00
OS_CFLAGS += $( PROFILE_USE_CFLAGS)
OS_CXXFLAGS += $( PROFILE_USE_CFLAGS)
2008-02-21 02:29:11 +03:00
OS_LDFLAGS += $( PROFILE_USE_LDFLAGS)
i f e q ( W I N N T , $( OS_ARCH ) )
AR_FLAGS += -LTCG
2004-03-21 05:31:17 +03:00
e n d i f
2008-02-21 02:29:11 +03:00
e n d i f # MOZ_PROFILE_USE
e n d i f # NO_PROFILE_GUIDED_OPTIMIZE
2008-02-17 01:23:08 +03:00
2008-02-17 01:23:07 +03:00
2005-04-06 07:35:24 +04:00
# Does the makefile specifies the internal XPCOM API linkage?
i f n e q ( , $( MOZILLA_INTERNAL_API ) $( LIBXUL_LIBRARY ) )
DEFINES += -DMOZILLA_INTERNAL_API
e n d i f
2004-12-09 22:28:35 +03:00
# Force XPCOM/widget/gfx methods to be _declspec(dllexport) when we're
# building libxul libraries
i f d e f M O Z _ E N A B L E _ L I B X U L
i f d e f L I B X U L _ L I B R A R Y
DEFINES += \
-D_IMPL_NS_COM \
-DEXPORT_XPT_API \
-DEXPORT_XPTC_API \
-D_IMPL_NS_GFX \
-D_IMPL_NS_WIDGET \
2006-02-23 21:13:46 +03:00
-DIMPL_XREAPI \
2005-04-05 21:40:32 +04:00
-DIMPL_NS_NET \
2007-11-13 22:21:24 +03:00
-DIMPL_THEBES \
2004-12-09 22:28:35 +03:00
$( NULL)
2010-08-14 08:18:05 +04:00
i f n d e f J S _ S H A R E D _ L I B R A R Y
DEFINES += -DSTATIC_EXPORTABLE_JS_API
e n d i f
2004-12-09 22:28:35 +03:00
e n d i f
e n d i f
2004-12-07 05:35:37 +03:00
# Force _all_ exported methods to be |_declspec(dllexport)| when we're
# building them into the executable.
2005-04-22 23:06:27 +04:00
2006-03-08 21:47:19 +03:00
i f e q ( , $( filter -out WINNT WINCE OS 2, $ ( OS_ARCH ) ) )
2005-10-17 18:57:32 +04:00
i f d e f B U I L D _ S T A T I C _ L I B S
2004-12-07 05:35:37 +03:00
DEFINES += \
-D_IMPL_NS_GFX \
-D_IMPL_NS_MSG_BASE \
-D_IMPL_NS_WIDGET \
$( NULL)
e n d i f
e n d i f
2011-02-28 23:29:50 +03:00
# Flags passed to JarMaker.py
2005-06-01 15:59:09 +04:00
MAKE_JARS_FLAGS = \
2008-09-19 20:19:52 +04:00
-t $( topsrcdir) \
2005-06-01 15:59:09 +04:00
-f $( MOZ_CHROME_FILE_FORMAT) \
$( NULL)
i f d e f U S E _ E X T E N S I O N _ M A N I F E S T
MAKE_JARS_FLAGS += -e
e n d i f
2008-10-20 23:57:47 +04:00
i f d e f B O T H _ M A N I F E S T S
MAKE_JARS_FLAGS += --both-manifests
e n d i f
2005-06-01 15:59:09 +04:00
TAR_CREATE_FLAGS = -cvhf
i f e q ( $( OS_ARCH ) , B S D _ O S )
TAR_CREATE_FLAGS = -cvLf
e n d i f
i f e q ( $( OS_ARCH ) , O S 2 )
TAR_CREATE_FLAGS = -cvf
e n d i f
1998-03-28 05:44:41 +03:00
#
# Personal makefile customizations go in these optional make include files.
#
MY_CONFIG := $( DEPTH) /config/myconfig.mk
MY_RULES := $( DEPTH) /config/myrules.mk
#
# Default command macros; can be overridden in <arch>.mk.
#
2011-01-25 23:14:30 +03:00
CCC = $( CXX)
NFSPWD = $( CONFIG_TOOLS) /nfspwd
PURIFY = purify $( PURIFYOPTIONS)
QUANTIFY = quantify $( QUANTIFYOPTIONS)
2000-03-31 11:18:52 +04:00
i f d e f C R O S S _ C O M P I L E
2011-01-25 23:14:30 +03:00
XPIDL_COMPILE = $( LIBXUL_DIST) /host/bin/host_xpidl$( HOST_BIN_SUFFIX)
2000-03-31 11:18:52 +04:00
e l s e
2011-01-25 23:14:30 +03:00
XPIDL_COMPILE = $( LIBXUL_DIST) /bin/xpidl$( BIN_SUFFIX)
2000-03-31 11:18:52 +04:00
e n d i f
2011-04-14 13:22:09 +04:00
XPIDL_LINK = $( PYTHON) $( SDK_BIN_DIR) /xpt.py link
1998-03-28 05:44:41 +03:00
2006-08-28 19:24:32 +04:00
# Java macros
JAVA_GEN_DIR = _javagen
JAVA_DIST_DIR = $( DEPTH) /$( JAVA_GEN_DIR)
2007-01-31 23:54:19 +03:00
JAVA_IFACES_PKG_NAME = org/mozilla/interfaces
2006-08-28 19:24:32 +04:00
2009-05-18 22:15:05 +04:00
INCLUDES = \
$( LOCAL_INCLUDES) \
-I$( srcdir) \
-I. \
-I$( DIST) /include -I$( DIST) /include/nsprpub \
$( if $( LIBXUL_SDK) ,-I$( LIBXUL_SDK) /include -I$( LIBXUL_SDK) /include/nsprpub) \
$( OS_INCLUDES) \
$( NULL)
2005-04-06 07:35:24 +04:00
2008-12-02 22:46:37 +03:00
i n c l u d e $( topsrcdir ) / c o n f i g / s t a t i c - c h e c k i n g - c o n f i g . m k
2008-02-27 19:28:13 +03:00
1999-12-24 13:58:11 +03:00
CFLAGS = $( OS_CFLAGS)
CXXFLAGS = $( OS_CXXFLAGS)
2007-10-14 01:13:50 +04:00
LDFLAGS = $( OS_LDFLAGS) $( MOZ_FIX_LINK_PATHS)
2001-11-16 10:42:48 +03:00
# Allow each module to override the *default* optimization settings
2004-12-07 01:39:54 +03:00
# by setting MODULE_OPTIMIZE_FLAGS if the developer has not given
2001-11-16 10:42:48 +03:00
# arguments to --enable-optimize
i f d e f M O Z _ O P T I M I Z E
i f e q ( 1 , $( MOZ_OPTIMIZE ) )
i f d e f M O D U L E _ O P T I M I Z E _ F L A G S
CFLAGS += $( MODULE_OPTIMIZE_FLAGS)
CXXFLAGS += $( MODULE_OPTIMIZE_FLAGS)
e l s e
CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MODULE_OPTIMIZE_FLAGS
e l s e
CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MOZ_OPTIMIZE == 1
LDFLAGS += $( MOZ_OPTIMIZE_LDFLAGS)
e n d i f # MOZ_OPTIMIZE
1999-02-10 02:24:12 +03:00
2002-11-15 06:41:17 +03:00
i f d e f C R O S S _ C O M P I L E
HOST_CFLAGS += $( HOST_OPTIMIZE_FLAGS)
e l s e
i f d e f M O Z _ O P T I M I Z E
i f e q ( 1 , $( MOZ_OPTIMIZE ) )
i f d e f M O D U L E _ O P T I M I Z E _ F L A G S
HOST_CFLAGS += $( MODULE_OPTIMIZE_FLAGS)
e l s e
HOST_CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MODULE_OPTIMIZE_FLAGS
e l s e
HOST_CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MOZ_OPTIMIZE == 1
e n d i f # MOZ_OPTIMIZE
e n d i f # CROSS_COMPILE
2010-05-06 22:55:18 +04:00
# Check for FAIL_ON_WARNINGS & FAIL_ON_WARNINGS_DEBUG (Shorthand for Makefiles
# to request that we use the 'warnings as errors' compile flags)
# NOTE: First, we clear FAIL_ON_WARNINGS[_DEBUG] if we're doing a Windows PGO
# build, since WARNINGS_AS_ERRORS has been suspected of causing isuses in that
# situation. (See bug 437002.)
i f e q ( W I N N T _ 1 , $( OS_ARCH ) _ $( MOZ_PROFILE_GENERATE ) $( MOZ_PROFILE_USE ) )
FAIL_ON_WARNINGS_DEBUG =
FAIL_ON_WARNINGS =
e n d i f # WINNT && (MOS_PROFILE_GENERATE ^ MOZ_PROFILE_USE)
2010-06-27 02:15:35 +04:00
# Also clear FAIL_ON_WARNINGS[_DEBUG] for Android builds, since
# they have some platform-specific warnings we haven't fixed yet.
i f e q ( $( OS_TARGET ) , A n d r o i d )
FAIL_ON_WARNINGS_DEBUG =
FAIL_ON_WARNINGS =
e n d i f # Android
2010-05-06 22:55:18 +04:00
# Now, check for debug version of flag; it turns on normal flag in debug builds.
i f d e f F A I L _ O N _ W A R N I N G S _ D E B U G
i f d e f M O Z _ D E B U G
FAIL_ON_WARNINGS = 1
e n d i f # MOZ_DEBUG
e n d i f # FAIL_ON_WARNINGS_DEBUG
# Check for normal version of flag, and add WARNINGS_AS_ERRORS if it's set to 1.
i f d e f F A I L _ O N _ W A R N I N G S
CXXFLAGS += $( WARNINGS_AS_ERRORS)
CFLAGS += $( WARNINGS_AS_ERRORS)
e n d i f # FAIL_ON_WARNINGS
2002-08-21 02:21:21 +04:00
2003-03-08 08:18:43 +03:00
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
2001-12-09 10:08:58 +03:00
#// Currently, unless USE_STATIC_LIBS is defined, the multithreaded
#// DLL version of the RTL is used...
#//
#//------------------------------------------------------------------------
i f d e f U S E _ S T A T I C _ L I B S
RTL_FLAGS = -MT # Statically linked multithreaded RTL
2002-02-26 12:26:10 +03:00
i f n e q ( , $( MOZ_DEBUG ) $( NS_TRACE_MALLOC ) )
2006-01-24 21:15:11 +03:00
i f n d e f M O Z _ N O _ D E B U G _ R T L
2001-12-09 10:08:58 +03:00
RTL_FLAGS = -MTd # Statically linked multithreaded MSVC4.0 debug RTL
2006-01-24 21:15:11 +03:00
e n d i f
2002-02-26 12:26:10 +03:00
e n d i f # MOZ_DEBUG || NS_TRACE_MALLOC
2001-12-09 10:08:58 +03:00
e l s e # !USE_STATIC_LIBS
RTL_FLAGS = -MD # Dynamically linked, multithreaded RTL
2002-02-26 12:26:10 +03:00
i f n e q ( , $( MOZ_DEBUG ) $( NS_TRACE_MALLOC ) )
2001-12-09 10:08:58 +03:00
i f n d e f M O Z _ N O _ D E B U G _ R T L
RTL_FLAGS = -MDd # Dynamically linked, multithreaded MSVC4.0 debug RTL
e n d i f
2002-02-26 12:26:10 +03:00
e n d i f # MOZ_DEBUG || NS_TRACE_MALLOC
2001-12-09 10:08:58 +03:00
e n d i f # USE_STATIC_LIBS
2003-03-08 08:18:43 +03:00
e n d i f # WINNT && !GNU_CC
2001-12-09 10:08:58 +03:00
2008-02-23 00:08:36 +03:00
i f e q ( $( OS_ARCH ) , D a r w i n )
# Darwin doesn't cross-compile, so just set both types of flags here.
HOST_CMFLAGS += -fobjc-exceptions
HOST_CMMFLAGS += -fobjc-exceptions
OS_COMPILE_CMFLAGS += -fobjc-exceptions
OS_COMPILE_CMMFLAGS += -fobjc-exceptions
e n d i f
2001-12-09 10:08:58 +03:00
2009-09-15 21:06:32 +04:00
COMPILE_CFLAGS = $( VISIBILITY_FLAGS) $( DEFINES) $( INCLUDES) $( DSO_CFLAGS) $( DSO_PIC_CFLAGS) $( CFLAGS) $( RTL_FLAGS) $( OS_COMPILE_CFLAGS)
2010-04-21 00:12:02 +04:00
COMPILE_CXXFLAGS = $( STL_FLAGS) $( VISIBILITY_FLAGS) $( DEFINES) $( INCLUDES) $( DSO_CFLAGS) $( DSO_PIC_CFLAGS) $( CXXFLAGS) $( RTL_FLAGS) $( OS_COMPILE_CXXFLAGS)
2008-02-23 00:08:36 +03:00
COMPILE_CMFLAGS = $( OS_COMPILE_CMFLAGS)
COMPILE_CMMFLAGS = $( OS_COMPILE_CMMFLAGS)
2008-02-26 02:38:23 +03:00
i f n d e f C R O S S _ C O M P I L E
2006-04-06 20:51:10 +04:00
HOST_CFLAGS += $( RTL_FLAGS)
2008-02-26 02:38:23 +03:00
e n d i f
1998-03-28 05:44:41 +03:00
#
# Name of the binary code directories
#
1998-08-20 00:42:14 +04:00
# Override defaults
1999-01-22 07:00:13 +03:00
# We need to know where to find the libraries we
# put on the link line for binaries, and should
# we link statically or dynamic? Assuming dynamic for now.
2003-03-08 08:18:43 +03:00
i f n e q ( W I N N T _ , $( OS_ARCH ) _ $( GNU_CC ) )
2005-04-22 23:06:27 +04:00
i f n e q ( , $( filter -out WINCE ,$ ( OS_ARCH ) ) )
1999-05-27 07:35:52 +04:00
LIBS_DIR = -L$( DIST) /bin -L$( DIST) /lib
2006-01-28 20:32:37 +03:00
i f d e f L I B X U L _ S D K
LIBS_DIR += -L$( LIBXUL_SDK) /bin -L$( LIBXUL_SDK) /lib
e n d i f
2001-12-05 00:17:48 +03:00
e n d i f
2003-03-08 08:18:43 +03:00
e n d i f
1999-01-22 07:00:13 +03:00
2000-01-11 08:13:01 +03:00
# Default location of include files
2002-02-26 02:20:01 +03:00
IDL_DIR = $( DIST) /idl
1998-03-28 05:44:41 +03:00
2006-01-28 20:32:37 +03:00
XPIDL_FLAGS = -I$( srcdir) -I$( IDL_DIR)
i f d e f L I B X U L _ S D K
XPIDL_FLAGS += -I$( LIBXUL_SDK) /idl
e n d i f
2009-05-21 22:12:46 +04:00
SDK_LIB_DIR = $( DIST) /sdk/lib
SDK_BIN_DIR = $( DIST) /sdk/bin
1998-08-27 23:52:22 +04:00
DEPENDENCIES = .md
1998-03-28 05:44:41 +03:00
2004-12-04 08:24:38 +03:00
MOZ_COMPONENT_LIBS = $( XPCOM_LIBS) $( MOZ_COMPONENT_NSPR_LIBS)
2000-04-04 08:46:38 +04:00
2000-06-29 07:03:43 +04:00
i f e q ( $( OS_ARCH ) , O S 2 )
2000-06-29 02:31:12 +04:00
ELF_DYNSTR_GC = echo
e l s e
2000-06-28 08:32:15 +04:00
ELF_DYNSTR_GC = :
2000-06-29 02:31:12 +04:00
e n d i f
2000-06-28 08:32:15 +04:00
2010-03-08 20:19:17 +03:00
i f e q ( $( MOZ_WIDGET_TOOLKIT ) , q t )
2010-03-08 19:55:53 +03:00
OS_LIBS += $( MOZ_QT_LIBS)
e n d i f
2000-10-25 01:22:32 +04:00
i f n d e f C R O S S _ C O M P I L E
2000-06-28 08:32:15 +04:00
i f d e f U S E _ E L F _ D Y N S T R _ G C
i f d e f M O Z _ C O M P O N E N T S _ V E R S I O N _ S C R I P T _ L D F L A G S
2006-04-12 17:56:58 +04:00
ELF_DYNSTR_GC = $( DEPTH) /config/elf-dynstr-gc
2000-06-28 08:32:15 +04:00
e n d i f
e n d i f
2000-10-25 01:22:32 +04:00
e n d i f
2000-06-28 08:32:15 +04:00
2002-06-13 12:52:55 +04:00
i f e q ( $( OS_ARCH ) , D a r w i n )
2005-10-26 23:01:18 +04:00
i f d e f N E X T _ R O O T
export NEXT_ROOT
2005-06-01 22:53:30 +04:00
PBBUILD = NEXT_ROOT = $( PBBUILD_BIN)
2005-10-26 23:01:18 +04:00
e l s e # NEXT_ROOT
PBBUILD = $( PBBUILD_BIN)
e n d i f # NEXT_ROOT
2007-11-09 10:06:03 +03:00
PBBUILD_SETTINGS = GCC_VERSION = " $( GCC_VERSION) " SYMROOT = build ARCHS = " $( OS_TEST) "
2004-01-29 23:18:14 +03:00
i f d e f M A C O S _ S D K _ D I R
2005-06-01 22:53:30 +04:00
PBBUILD_SETTINGS += SDKROOT = " $( MACOS_SDK_DIR) "
e n d i f # MACOS_SDK_DIR
i f d e f M A C O S X _ D E P L O Y M E N T _ T A R G E T
export MACOSX_DEPLOYMENT_TARGET
PBBUILD_SETTINGS += MACOSX_DEPLOYMENT_TARGET = " $( MACOSX_DEPLOYMENT_TARGET) "
e n d i f # MACOSX_DEPLOYMENT_TARGET
i f d e f M O Z _ O P T I M I Z E
i f e q ( 2 , $( MOZ_OPTIMIZE ) )
# Only override project defaults if the config specified explicit settings
PBBUILD_SETTINGS += GCC_MODEL_TUNING = OPTIMIZATION_CFLAGS = " $( MOZ_OPTIMIZE_FLAGS) "
e n d i f # MOZ_OPTIMIZE=2
e n d i f # MOZ_OPTIMIZE
2005-06-20 23:24:51 +04:00
i f e q ( 1 , $( HAS_XCODE_ 2_ 1) )
# Xcode 2.1 puts its build products in a directory corresponding to the
# selected build style/configuration.
XCODE_PRODUCT_DIR = build/$( BUILDSTYLE)
e l s e
XCODE_PRODUCT_DIR = build
e n d i f # HAS_XCODE_2_1=1
2005-06-01 22:53:30 +04:00
e n d i f # OS_ARCH=Darwin
2002-06-13 12:52:55 +04:00
2005-04-22 23:06:27 +04:00
1998-12-04 08:07:01 +03:00
i f d e f M O Z _ N A T I V E _ M A K E D E P E N D
2011-01-25 23:14:30 +03:00
MKDEPEND_DIR =
MKDEPEND = $( MOZ_NATIVE_MAKEDEPEND)
1998-12-04 08:07:01 +03:00
e l s e
2011-01-25 23:14:30 +03:00
MKDEPEND_DIR = $( CONFIG_TOOLS) /mkdepend
MKDEPEND = $( MKDEPEND_DIR) /mkdepend$( BIN_SUFFIX)
2002-04-16 02:54:51 +04:00
e n d i f
1998-12-04 08:07:01 +03:00
2002-09-05 10:28:15 +04:00
# Set link flags according to whether we want a console.
i f d e f M O Z _ W I N C O N S O L E
i f e q ( $( MOZ_WINCONSOLE ) , 1 )
2008-10-11 05:01:28 +04:00
i f e q ( $( OS_ARCH ) , O S 2 )
2005-06-01 18:28:35 +04:00
BIN_FLAGS += -Zlinker -PM:VIO
2002-09-05 10:28:15 +04:00
e n d i f
i f e q ( $( OS_ARCH ) , W I N N T )
2004-06-22 00:56:14 +04:00
i f d e f G N U _ C C
WIN32_EXE_LDFLAGS += -mconsole
e l s e
2005-06-01 18:28:35 +04:00
WIN32_EXE_LDFLAGS += -SUBSYSTEM:CONSOLE
2002-09-05 10:28:15 +04:00
e n d i f
2004-06-22 00:56:14 +04:00
e n d i f
2002-09-05 10:28:15 +04:00
e l s e # MOZ_WINCONSOLE
2008-10-11 05:01:28 +04:00
i f e q ( $( OS_ARCH ) , O S 2 )
2005-06-01 18:28:35 +04:00
BIN_FLAGS += -Zlinker -PM:PM
2002-09-05 10:28:15 +04:00
e n d i f
i f e q ( $( OS_ARCH ) , W I N N T )
2004-06-22 00:56:14 +04:00
i f d e f G N U _ C C
WIN32_EXE_LDFLAGS += -mwindows
e l s e
2005-06-01 18:28:35 +04:00
WIN32_EXE_LDFLAGS += -SUBSYSTEM:WINDOWS
2002-09-05 10:28:15 +04:00
e n d i f
e n d i f
e n d i f
2004-06-22 00:56:14 +04:00
e n d i f
2002-09-05 10:28:15 +04:00
2005-06-20 17:01:58 +04:00
# If we're building a component on MSVC, we don't want to generate an
# import lib, because that import lib will collide with the name of a
# static version of the same library.
i f e q ( $( GNU_LD ) $( OS_ARCH ) , W I N N T )
i f d e f I S _ C O M P O N E N T
2006-01-04 00:09:38 +03:00
LDFLAGS += -IMPLIB:fake.lib
DELETE_AFTER_LINK = fake.lib fake.exp
2005-06-20 17:01:58 +04:00
e n d i f
e n d i f
1998-03-28 05:44:41 +03:00
#
# Include any personal overrides the user might think are needed.
#
2008-06-06 23:43:26 +04:00
- i n c l u d e $( topsrcdir ) / $( MOZ_BUILD_APP ) / a p p - c o n f i g . m k
1998-03-28 05:44:41 +03:00
- i n c l u d e $( MY_CONFIG )
######################################################################
# Now test variables that might have been set or overridden by $(MY_CONFIG).
1999-08-29 22:10:23 +04:00
DEFINES += -DOSTYPE= \" $( OS_CONFIG) \"
2007-04-11 20:35:01 +04:00
DEFINES += -DOSARCH= $( OS_ARCH)
1998-03-28 05:44:41 +03:00
######################################################################
2011-02-25 17:05:08 +03:00
GARBAGE += $( DEPENDENCIES) $( MKDEPENDENCIES) $( MKDEPENDENCIES) .bak core $( wildcard core.[ 0-9] *) $( wildcard *.err) $( wildcard *.pure) $( wildcard *_pure_*.o) Templates.DB
1998-03-28 05:44:41 +03:00
2003-02-23 18:54:21 +03:00
i f e q ( $( OS_ARCH ) , D a r w i n )
i f n d e f N S D I S T M O D E
NSDISTMODE = absolute_symlink
e n d i f
2009-03-12 01:39:24 +03:00
PWD := $( CURDIR)
2003-02-23 18:54:21 +03:00
e n d i f
2005-07-28 23:48:12 +04:00
i f d e f N S I N S T A L L _ B I N
2011-01-25 23:14:30 +03:00
NSINSTALL = $( NSINSTALL_BIN)
2005-07-28 23:48:12 +04:00
e l s e
i f e q ( O S 2 , $( CROSS_COMPILE ) $( OS_ARCH ) )
2011-01-25 23:14:30 +03:00
NSINSTALL = $( MOZ_TOOLS_DIR) /nsinstall
2001-12-05 00:17:48 +03:00
e l s e
2011-01-25 23:14:30 +03:00
NSINSTALL = $( CONFIG_TOOLS) /nsinstall$( HOST_BIN_SUFFIX)
2005-07-28 23:48:12 +04:00
e n d i f # OS2
e n d i f # NSINSTALL_BIN
1998-03-28 05:44:41 +03:00
2011-03-19 14:59:37 +03:00
i f e q ( , $( CROSS_COMPILE ) $( filter -out WINNT OS 2, $ ( OS_ARCH ) ) )
2005-07-28 23:48:12 +04:00
INSTALL = $( NSINSTALL)
e l s e
1998-03-28 05:44:41 +03:00
i f e q ( $( NSDISTMODE ) , c o p y )
# copy files, but preserve source mtime
INSTALL = $( NSINSTALL) -t
e l s e
i f e q ( $( NSDISTMODE ) , a b s o l u t e _ s y m l i n k )
# install using absolute symbolic links
2003-02-23 18:54:21 +03:00
i f e q ( $( OS_ARCH ) , D a r w i n )
INSTALL = $( NSINSTALL) -L $( PWD)
e l s e
1998-03-28 05:44:41 +03:00
INSTALL = $( NSINSTALL) -L ` $( NFSPWD) `
2005-07-28 23:48:12 +04:00
e n d i f # Darwin
1998-03-28 05:44:41 +03:00
e l s e
# install using relative symbolic links
INSTALL = $( NSINSTALL) -R
2005-07-28 23:48:12 +04:00
e n d i f # absolute_symlink
e n d i f # copy
e n d i f # WINNT/OS2
1998-03-28 05:44:41 +03:00
2002-04-25 06:52:44 +04:00
# Use nsinstall in copy mode to install files on the system
SYSINSTALL = $( NSINSTALL) -t
2003-08-15 01:36:22 +04:00
2004-11-30 02:14:13 +03:00
#
# Localization build automation
#
# Because you might wish to "make locales AB_CD=ab-CD", we don't hardcode
# MOZ_UI_LOCALE directly, but use an intermediate variable that can be
# overridden by the command line. (Besides, AB_CD is prettier).
AB_CD = $( MOZ_UI_LOCALE)
2005-01-26 16:33:53 +03:00
2008-07-22 10:57:07 +04:00
i f n d e f L 1 0 N B A S E D I R
L10NBASEDIR = $( error L10NBASEDIR not defined by configure)
e n d i f
EXPAND_LOCALE_SRCDIR = $( if $( filter en-US,$( AB_CD) ) ,$( topsrcdir) /$( 1) /en-US,$( L10NBASEDIR) /$( AB_CD) /$( subst /locales,,$( 1) ) )
2005-01-26 16:33:53 +03:00
i f d e f r e l a t i v e s r c d i r
LOCALE_SRCDIR = $( call EXPAND_LOCALE_SRCDIR,$( relativesrcdir) )
e n d i f
2005-03-28 23:36:24 +04:00
2005-06-01 15:59:09 +04:00
i f d e f L O C A L E _ S R C D I R
2008-10-20 23:57:47 +04:00
# if LOCALE_MERGEDIR is set, use mergedir first, then the localization,
# and finally en-US
i f d e f L O C A L E _ M E R G E D I R
MAKE_JARS_FLAGS += -c $( LOCALE_MERGEDIR) /$( subst /locales,,$( relativesrcdir) )
e n d i f
2005-06-01 15:59:09 +04:00
MAKE_JARS_FLAGS += -c $( LOCALE_SRCDIR)
2008-10-20 23:57:47 +04:00
i f d e f L O C A L E _ M E R G E D I R
MAKE_JARS_FLAGS += -c $( topsrcdir) /$( relativesrcdir) /en-US
e n d i f
2005-06-01 15:59:09 +04:00
e n d i f
2011-03-18 20:29:56 +03:00
i f d e f L O C A L E _ M E R G E D I R
MERGE_FILE = $( firstword \
$( wildcard $( LOCALE_MERGEDIR) /$( subst /locales,,$( relativesrcdir) ) /$( 1) ) \
$( wildcard $( LOCALE_SRCDIR) /$( 1) ) \
$( srcdir) /en-US/$( 1) )
e l s e
MERGE_FILE = $( LOCALE_SRCDIR) /$( 1)
e n d i f
MERGE_FILES = $( foreach f,$( 1) ,$( call MERGE_FILE,$( f) ) )
2010-03-10 23:35:31 +03:00
i f d e f W I N C E
2010-03-10 21:36:45 +03:00
RUN_TEST_PROGRAM = $( PYTHON) $( topsrcdir) /build/mobile/devicemanager-run-test.py
e l s e
2010-03-24 02:24:38 +03:00
i f e q ( O S 2 , $( OS_ARCH ) )
2009-03-27 02:45:15 +03:00
RUN_TEST_PROGRAM = $( topsrcdir) /build/os2/test_os2.cmd " $( DIST) "
2010-03-24 02:24:38 +03:00
e l s e
i f n e q ( W I N N T , $( OS_ARCH ) )
RUN_TEST_PROGRAM = $( DIST) /bin/run-mozilla.sh
e n d i f # ! WINNT
e n d i f # ! OS2
e n d i f # ! WINCE
2009-03-02 09:28:09 +03:00
2005-12-18 20:09:28 +03:00
#
# Java macros
#
# Make sure any compiled classes work with at least JVM 1.4
JAVAC_FLAGS += -source 1.4
i f d e f M O Z _ D E B U G
JAVAC_FLAGS += -g
e n d i f
2008-12-19 17:50:24 +03:00
i f d e f T I E R S
DIRS += $( foreach tier,$( TIERS) ,$( tier_$( tier) _dirs) )
STATIC_DIRS += $( foreach tier,$( TIERS) ,$( tier_$( tier) _staticdirs) )
e n d i f
2010-08-18 21:34:07 +04:00
2010-08-19 17:56:20 +04:00
OPTIMIZE_JARS_CMD = $( PYTHON) $( call core_abspath,$( topsrcdir) /config/optimizejars.py)
2011-02-25 17:05:08 +03:00
2011-04-13 04:27:41 +04:00
CREATE_PRECOMPLETE_CMD = $( PYTHON) $( call core_abspath,$( topsrcdir) /config/createprecomplete.py)
2011-02-25 17:05:08 +03:00
EXPAND_LIBS = $( PYTHON) -I$( DEPTH) /config $( topsrcdir) /config/expandlibs.py
EXPAND_LIBS_EXEC = $( PYTHON) $( topsrcdir) /config/pythonpath.py -I$( DEPTH) /config $( topsrcdir) /config/expandlibs_exec.py
EXPAND_LIBS_GEN = $( PYTHON) $( topsrcdir) /config/pythonpath.py -I$( DEPTH) /config $( topsrcdir) /config/expandlibs_gen.py
EXPAND_AR = $( EXPAND_LIBS_EXEC) --extract -- $( AR)
EXPAND_CC = $( EXPAND_LIBS_EXEC) --uselist -- $( CC)
EXPAND_CCC = $( EXPAND_LIBS_EXEC) --uselist -- $( CCC)
EXPAND_LD = $( EXPAND_LIBS_EXEC) --uselist -- $( LD)
EXPAND_MKSHLIB = $( EXPAND_LIBS_EXEC) --uselist -- $( MKSHLIB)
2011-04-15 13:03:35 +04:00
i f d e f S T D C X X _ C O M P A T
CHECK_STDCXX = objdump -p $( 1) | grep -e 'GLIBCXX_3\.4\.\(9\|[1-9][0-9]\)' && echo "Error: We don't want these libstdc++ symbol versions to be used" && exit 1 || exit 0
e n d i f