1998-03-28 02:44:41 +00:00
|
|
|
#
|
2004-04-18 14:21:17 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-03-28 02:44:41 +00:00
|
|
|
#
|
2004-04-18 14:21:17 +00: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 02:44:41 +00:00
|
|
|
#
|
2004-04-18 14:21:17 +00: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 03:40:37 +00:00
|
|
|
#
|
2004-04-18 14:21:17 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
1998-03-28 02:44:41 +00:00
|
|
|
#
|
2004-04-18 14:21:17 +00: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 04:41:00 +00:00
|
|
|
# Benjamin Smedberg <benjamin@smedbergs.us>
|
2004-04-18 14:21:17 +00: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 02:44:41 +00: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 03:00:38 +00:00
|
|
|
|
|
|
|
# Define an include-at-most-once flag
|
|
|
|
INCLUDED_CONFIG_MK = 1
|
|
|
|
|
2005-07-22 20:11:37 +00:00
|
|
|
EXIT_ON_ERROR = set -e; # Shell loops continue past errors without this.
|
|
|
|
|
1998-08-19 20:42:14 +00:00
|
|
|
ifndef topsrcdir
|
1998-09-05 01:10:54 +00:00
|
|
|
topsrcdir = $(DEPTH)
|
1998-08-19 20:42:14 +00:00
|
|
|
endif
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2000-03-14 03:00:38 +00:00
|
|
|
ifndef INCLUDED_AUTOCONF_MK
|
1999-09-29 20:39:46 +00:00
|
|
|
include $(DEPTH)/config/autoconf.mk
|
1999-09-02 22:02:46 +00:00
|
|
|
endif
|
|
|
|
|
2008-06-06 19:31:11 +00:00
|
|
|
COMMA = ,
|
|
|
|
|
2007-03-26 18:15:02 +00:00
|
|
|
# Sanity check some variables
|
|
|
|
CHECK_VARS := \
|
|
|
|
XPI_NAME \
|
|
|
|
LIBRARY_NAME \
|
|
|
|
MODULE \
|
|
|
|
DEPTH \
|
|
|
|
SHORT_LIBNAME \
|
|
|
|
XPI_PKGNAME \
|
|
|
|
INSTALL_EXTENSION_ID \
|
2008-12-24 19:04:43 +00:00
|
|
|
SHARED_LIBRARY_NAME \
|
|
|
|
STATIC_LIBRARY_NAME \
|
2007-03-26 18:15:02 +00: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-11 22:39:24 +00:00
|
|
|
core_abspath = $(if $(findstring :,$(1)),$(1),$(if $(filter /%,$(1)),$(1),$(CURDIR)/$(1)))
|
|
|
|
|
2005-02-18 22:17:37 +00: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-20 23:10:56 +00:00
|
|
|
FINAL_TARGET = $(if $(XPI_NAME),$(DIST)/xpi-stage/$(XPI_NAME),$(DIST)/bin)
|
2005-02-18 22:17:37 +00:00
|
|
|
|
2005-07-28 16:17:15 +00:00
|
|
|
# MAKE_JARS_TARGET is a staging area for make-jars.pl. When packaging in
|
|
|
|
# the jar format, make-jars leaves behind a directory structure that's not
|
|
|
|
# needed in $(FINAL_TARGET). For both, flat, and symlink, the directory
|
|
|
|
# structure contains the chrome, so leave it in $(FINAL_TARGET).
|
|
|
|
ifeq (jar,$(MOZ_CHROME_FILE_FORMAT))
|
|
|
|
MAKE_JARS_TARGET = $(if $(XPI_NAME),$(FINAL_TARGET).stage,$(DIST)/chrome-stage)
|
|
|
|
else
|
|
|
|
MAKE_JARS_TARGET = $(FINAL_TARGET)
|
|
|
|
endif
|
|
|
|
|
2002-11-14 20:23:26 +00:00
|
|
|
# The VERSION_NUMBER is suffixed onto the end of the DLLs we ship.
|
|
|
|
VERSION_NUMBER = 50
|
|
|
|
|
2005-07-05 20:37:27 +00:00
|
|
|
ifeq ($(HOST_OS_ARCH),WINNT)
|
2005-06-02 04:00:37 +00:00
|
|
|
win_srcdir := $(subst $(topsrcdir),$(WIN_TOP_SRC),$(srcdir))
|
|
|
|
BUILD_TOOLS = $(WIN_TOP_SRC)/build/unix
|
|
|
|
else
|
|
|
|
win_srcdir := $(srcdir)
|
2000-03-14 06:16:27 +00:00
|
|
|
BUILD_TOOLS = $(topsrcdir)/build/unix
|
2005-06-02 04:00:37 +00:00
|
|
|
endif
|
|
|
|
|
2004-03-23 08:41:30 +00:00
|
|
|
CONFIG_TOOLS = $(MOZ_BUILD_ROOT)/config
|
2000-03-14 06:16:27 +00:00
|
|
|
AUTOCONF_TOOLS = $(topsrcdir)/build/autoconf
|
|
|
|
|
1998-06-02 02:50:14 +00:00
|
|
|
ifeq ($(OS_ARCH),QNX)
|
1999-06-15 23:56:05 +00:00
|
|
|
ifeq ($(OS_TARGET),NTO)
|
|
|
|
LD := qcc -Vgcc_ntox86 -nostdlib
|
|
|
|
else
|
1999-06-04 01:42:00 +00:00
|
|
|
LD := $(CC)
|
1998-06-02 02:50:14 +00:00
|
|
|
endif
|
2000-03-31 01:24:48 +00:00
|
|
|
endif
|
2000-11-27 21:27:10 +00:00
|
|
|
ifeq ($(OS_ARCH),BeOS)
|
|
|
|
BEOS_ADDON_WORKAROUND = 1
|
|
|
|
endif
|
1998-03-28 02:44:41 +00: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 04:16:15 +00:00
|
|
|
ifneq (,$(filter FreeBSD HP-UX IRIX Linux NetBSD OpenBSD OSF1 SunOS,$(OS_ARCH)))
|
1998-03-28 02:44:41 +00:00
|
|
|
OS_RELEASE := $(basename $(OS_RELEASE))
|
1998-07-22 05:38:53 +00:00
|
|
|
|
|
|
|
# Allow the user to ignore the OS_VERSION, which is usually irrelevant.
|
2000-03-02 02:11:34 +00:00
|
|
|
ifdef WANT_MOZILLA_CONFIG_OS_VERSION
|
|
|
|
OS_VERS := $(suffix $(OS_RELEASE))
|
1998-03-28 02:44:41 +00:00
|
|
|
OS_VERSION := $(shell echo $(OS_VERS) | sed 's/-.*//')
|
|
|
|
endif
|
|
|
|
|
1998-07-22 05:38:53 +00:00
|
|
|
endif
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
OS_CONFIG := $(OS_ARCH)$(OS_RELEASE)
|
|
|
|
|
2001-04-28 18:51:31 +00:00
|
|
|
FINAL_LINK_LIBS = $(DEPTH)/config/final-link-libs
|
|
|
|
FINAL_LINK_COMPS = $(DEPTH)/config/final-link-comps
|
2001-06-20 20:21:49 +00:00
|
|
|
FINAL_LINK_COMP_NAMES = $(DEPTH)/config/final-link-comp-names
|
|
|
|
|
2006-01-28 17:32:37 +00:00
|
|
|
MOZ_UNICHARUTIL_LIBS = $(LIBXUL_DIST)/lib/$(LIB_PREFIX)unicharutil_s.$(LIB_SUFFIX)
|
2001-12-14 23:49:04 +00:00
|
|
|
MOZ_WIDGET_SUPPORT_LIBS = $(DIST)/lib/$(LIB_PREFIX)widgetsupport_s.$(LIB_SUFFIX)
|
2001-10-27 15:11:07 +00:00
|
|
|
|
2008-09-15 16:03:30 +00:00
|
|
|
ifdef MOZ_MEMORY
|
2009-04-24 17:31:18 +00:00
|
|
|
ifneq (,$(filter-out WINNT WINCE,$(OS_ARCH)))
|
2009-08-16 21:54:45 +00:00
|
|
|
JEMALLOC_LIBS = $(MKSHLIB_FORCE_ALL) $(call EXPAND_MOZLIBNAME,jemalloc) $(MKSHLIB_UNFORCE_ALL)
|
2008-09-15 16:03:30 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2000-05-16 09:31:58 +00:00
|
|
|
# determine debug-related options
|
2001-12-09 07:08:58 +00:00
|
|
|
_DEBUG_CFLAGS :=
|
|
|
|
_DEBUG_LDFLAGS :=
|
2000-05-16 09:31:58 +00:00
|
|
|
|
|
|
|
ifdef MOZ_DEBUG
|
2010-03-02 11:24:00 +00:00
|
|
|
_DEBUG_CFLAGS += $(MOZ_DEBUG_ENABLE_DEFS) $(MOZ_DEBUG_FLAGS)
|
|
|
|
_DEBUG_LDFLAGS += $(MOZ_DEBUG_LDFLAGS)
|
2006-05-16 13:53:54 +00:00
|
|
|
XULPPFLAGS += $(MOZ_DEBUG_ENABLE_DEFS)
|
2000-05-16 09:31:58 +00:00
|
|
|
else
|
2001-12-09 07:08:58 +00:00
|
|
|
_DEBUG_CFLAGS += $(MOZ_DEBUG_DISABLE_DEFS)
|
2006-05-16 13:53:54 +00:00
|
|
|
XULPPFLAGS += $(MOZ_DEBUG_DISABLE_DEFS)
|
2010-03-02 11:24:00 +00:00
|
|
|
ifdef MOZ_DEBUG_SYMBOLS
|
|
|
|
_DEBUG_CFLAGS += $(MOZ_DEBUG_FLAGS)
|
|
|
|
_DEBUG_LDFLAGS += $(MOZ_DEBUG_LDFLAGS)
|
2000-05-16 09:31:58 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-04-22 12:58:39 +00:00
|
|
|
MOZALLOC_LIB = -L$(DIST)/bin $(call EXPAND_MOZLIBNAME,mozalloc)
|
2010-02-11 22:14:38 +00:00
|
|
|
|
2001-12-09 07:08:58 +00:00
|
|
|
OS_CFLAGS += $(_DEBUG_CFLAGS)
|
|
|
|
OS_CXXFLAGS += $(_DEBUG_CFLAGS)
|
|
|
|
OS_LDFLAGS += $(_DEBUG_LDFLAGS)
|
2000-05-16 09:31:58 +00:00
|
|
|
|
2009-03-28 02:00:25 +00:00
|
|
|
# XXX: What does this? Bug 482434 filed for better explanation.
|
2003-03-08 05:18:43 +00:00
|
|
|
ifeq ($(OS_ARCH)_$(GNU_CC),WINNT_)
|
2002-02-03 03:28:07 +00:00
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
ifneq (,$(MOZ_BROWSE_INFO)$(MOZ_BSCFILE))
|
2005-06-01 14:28:35 +00:00
|
|
|
OS_CFLAGS += -FR
|
|
|
|
OS_CXXFLAGS += -FR
|
2002-02-03 03:28:07 +00:00
|
|
|
endif
|
2008-02-22 11:54:08 +00:00
|
|
|
else # ! MOZ_DEBUG
|
|
|
|
|
2009-04-20 10:56:23 +00: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.
|
|
|
|
ifeq ($(MOZ_MEMORY)_$(USE_STATIC_LIBS),1_)
|
|
|
|
# Disable default CRT libs and add the right lib path for the linker
|
|
|
|
OS_LDFLAGS += $(MOZ_MEMORY_LDFLAGS)
|
|
|
|
endif
|
|
|
|
|
2008-02-22 11:54:08 +00: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.
|
|
|
|
ifdef MOZ_DEBUG_SYMBOLS
|
|
|
|
OS_CXXFLAGS += -Zi -UDEBUG -DNDEBUG
|
2008-03-04 12:00:38 +00:00
|
|
|
OS_CFLAGS += -Zi -UDEBUG -DNDEBUG
|
2009-11-23 15:20:21 +00:00
|
|
|
OS_LDFLAGS += -DEBUG -OPT:REF
|
2004-10-12 00:09:58 +00:00
|
|
|
endif
|
|
|
|
|
2004-11-15 08:37:53 +00:00
|
|
|
ifdef MOZ_QUANTIFY
|
2005-06-01 14:28:35 +00:00
|
|
|
# -FIXED:NO is needed for Quantify to work, but it increases the size
|
2004-10-12 00:09:58 +00:00
|
|
|
# of executables, so only use it if building for Quantify.
|
2005-06-16 05:05:41 +00:00
|
|
|
WIN32_EXE_LDFLAGS += -FIXED:NO
|
2004-11-15 08:37:53 +00:00
|
|
|
|
2005-06-01 14:28:35 +00:00
|
|
|
# We need -OPT:NOICF to prevent identical methods from being merged together.
|
2004-11-15 08:37:53 +00:00
|
|
|
# Otherwise, Quantify doesn't know which method was actually called when it's
|
|
|
|
# showing you the profile.
|
2005-06-01 14:28:35 +00:00
|
|
|
OS_LDFLAGS += -OPT:NOICF
|
2002-02-03 03:28:07 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# Handle trace-malloc in optimized builds.
|
|
|
|
# No opt to give sane callstacks.
|
|
|
|
#
|
|
|
|
ifdef NS_TRACE_MALLOC
|
2002-02-26 09:26:10 +00:00
|
|
|
MOZ_OPTIMIZE_FLAGS=-Zi -Od -UDEBUG -DNDEBUG
|
2005-06-01 14:28:35 +00:00
|
|
|
OS_LDFLAGS = -DEBUG -PDB:NONE -OPT:REF -OPT:nowin98
|
2008-02-22 11:54:08 +00:00
|
|
|
endif # NS_TRACE_MALLOC
|
2002-02-03 03:28:07 +00:00
|
|
|
|
|
|
|
endif # MOZ_DEBUG
|
2003-03-08 05:18:43 +00:00
|
|
|
endif # WINNT && !GNU_CC
|
2002-02-03 03:28:07 +00:00
|
|
|
|
2001-06-20 20:21:49 +00:00
|
|
|
#
|
2001-06-18 22:10:38 +00:00
|
|
|
# Build using PIC by default
|
|
|
|
# Do not use PIC if not building a shared lib (see exceptions below)
|
|
|
|
#
|
2005-10-17 14:57:32 +00:00
|
|
|
|
|
|
|
ifndef BUILD_STATIC_LIBS
|
|
|
|
_ENABLE_PIC=1
|
|
|
|
endif
|
|
|
|
ifneq (,$(FORCE_SHARED_LIB)$(FORCE_USE_PIC))
|
2001-06-18 22:10:38 +00:00
|
|
|
_ENABLE_PIC=1
|
|
|
|
endif
|
|
|
|
|
2006-11-13 17:53:01 +00:00
|
|
|
# In Firefox, all components are linked into either libxul or the static
|
|
|
|
# meta-component, and should be compiled with PIC.
|
|
|
|
ifdef MOZ_META_COMPONENT
|
|
|
|
_ENABLE_PIC=1
|
|
|
|
endif
|
|
|
|
|
2001-06-20 20:21:49 +00: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.
|
|
|
|
|
|
|
|
ifdef IS_COMPONENT
|
2006-11-13 17:53:01 +00:00
|
|
|
ifdef EXPORT_LIBRARY
|
2005-10-17 14:57:32 +00:00
|
|
|
ifneq (,$(BUILD_STATIC_LIBS))
|
2001-06-20 20:21:49 +00:00
|
|
|
ifdef MODULE_NAME
|
|
|
|
DEFINES += -DXPCOM_TRANSLATE_NSGM_ENTRY_POINT=1
|
2001-06-18 22:10:38 +00:00
|
|
|
FORCE_STATIC_LIB=1
|
2001-03-20 05:42:58 +00:00
|
|
|
endif
|
|
|
|
endif
|
2001-06-20 20:21:49 +00:00
|
|
|
endif
|
2006-11-13 17:53:01 +00:00
|
|
|
endif
|
2001-06-20 20:21:49 +00:00
|
|
|
|
|
|
|
# Determine if module being compiled is destined
|
2004-12-06 22:39:54 +00:00
|
|
|
# to be merged into libxul
|
2001-06-20 20:21:49 +00:00
|
|
|
|
2004-12-06 22:39:54 +00:00
|
|
|
ifdef MOZ_ENABLE_LIBXUL
|
|
|
|
ifdef LIBXUL_LIBRARY
|
2001-06-20 20:21:49 +00:00
|
|
|
ifdef IS_COMPONENT
|
|
|
|
ifdef MODULE_NAME
|
|
|
|
DEFINES += -DXPCOM_TRANSLATE_NSGM_ENTRY_POINT=1
|
2004-12-06 22:39:54 +00:00
|
|
|
else
|
2005-06-15 13:41:39 +00:00
|
|
|
$(error Component makefile does not specify MODULE_NAME.)
|
2001-06-20 20:21:49 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
FORCE_STATIC_LIB=1
|
|
|
|
_ENABLE_PIC=1
|
2004-12-09 19:28:35 +00:00
|
|
|
SHORT_LIBNAME=
|
2001-06-20 20:21:49 +00:00
|
|
|
endif
|
2003-05-16 06:07:37 +00:00
|
|
|
endif
|
|
|
|
|
2005-06-15 13:41:39 +00: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.
|
|
|
|
|
|
|
|
ifdef XPI_NAME
|
2005-06-15 23:42:07 +00:00
|
|
|
_ENABLE_PIC=1
|
2005-06-15 13:41:39 +00:00
|
|
|
ifdef IS_COMPONENT
|
|
|
|
EXPORT_LIBRARY=
|
|
|
|
FORCE_STATIC_LIB=
|
|
|
|
FORCE_SHARED_LIB=1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2001-06-18 22:10:38 +00:00
|
|
|
#
|
|
|
|
# Disable PIC if necessary
|
|
|
|
#
|
|
|
|
|
|
|
|
ifndef _ENABLE_PIC
|
|
|
|
DSO_CFLAGS=
|
2002-08-31 04:33:02 +00:00
|
|
|
ifeq ($(OS_ARCH)_$(HAVE_GCC3_ABI),Darwin_1)
|
|
|
|
DSO_PIC_CFLAGS=-mdynamic-no-pic
|
|
|
|
else
|
2001-06-18 22:10:38 +00:00
|
|
|
DSO_PIC_CFLAGS=
|
2002-08-31 04:33:02 +00:00
|
|
|
endif
|
2004-04-07 22:59:36 +00:00
|
|
|
endif
|
|
|
|
|
2008-12-24 19:04:43 +00:00
|
|
|
ifndef SHARED_LIBRARY_NAME
|
|
|
|
ifdef LIBRARY_NAME
|
|
|
|
SHARED_LIBRARY_NAME=$(LIBRARY_NAME)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef STATIC_LIBRARY_NAME
|
|
|
|
ifdef LIBRARY_NAME
|
|
|
|
STATIC_LIBRARY_NAME=$(LIBRARY_NAME)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-03-06 11:57:21 +00:00
|
|
|
# This comes from configure
|
|
|
|
ifdef MOZ_PROFILE_GUIDED_OPTIMIZE_DISABLE
|
|
|
|
NO_PROFILE_GUIDED_OPTIMIZE = 1
|
|
|
|
endif
|
|
|
|
|
2008-02-16 22:23:07 +00:00
|
|
|
# Enable profile-based feedback
|
2008-02-20 23:29:11 +00:00
|
|
|
ifndef NO_PROFILE_GUIDED_OPTIMIZE
|
2004-03-21 02:31:17 +00:00
|
|
|
ifdef MOZ_PROFILE_GENERATE
|
2008-02-16 22:23:07 +00:00
|
|
|
# No sense in profiling tools
|
|
|
|
ifndef INTERNAL_TOOLS
|
|
|
|
OS_CFLAGS += $(PROFILE_GEN_CFLAGS)
|
|
|
|
OS_CXXFLAGS += $(PROFILE_GEN_CFLAGS)
|
2008-02-20 23:29:11 +00:00
|
|
|
OS_LDFLAGS += $(PROFILE_GEN_LDFLAGS)
|
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
|
|
|
AR_FLAGS += -LTCG
|
|
|
|
endif
|
|
|
|
endif # INTERNAL_TOOLS
|
|
|
|
endif # MOZ_PROFILE_GENERATE
|
2008-02-16 22:23:07 +00:00
|
|
|
|
2004-03-21 02:31:17 +00:00
|
|
|
ifdef MOZ_PROFILE_USE
|
2008-02-20 23:29:11 +00:00
|
|
|
ifndef INTERNAL_TOOLS
|
2008-02-16 22:23:07 +00:00
|
|
|
OS_CFLAGS += $(PROFILE_USE_CFLAGS)
|
|
|
|
OS_CXXFLAGS += $(PROFILE_USE_CFLAGS)
|
2008-02-20 23:29:11 +00:00
|
|
|
OS_LDFLAGS += $(PROFILE_USE_LDFLAGS)
|
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
|
|
|
AR_FLAGS += -LTCG
|
2004-03-21 02:31:17 +00:00
|
|
|
endif
|
2008-02-20 23:29:11 +00:00
|
|
|
endif # INTERNAL_TOOLS
|
|
|
|
endif # MOZ_PROFILE_USE
|
|
|
|
endif # NO_PROFILE_GUIDED_OPTIMIZE
|
2004-03-21 02:31:17 +00:00
|
|
|
|
2008-02-16 22:23:07 +00:00
|
|
|
|
2005-04-06 03:35:24 +00:00
|
|
|
# Does the makefile specifies the internal XPCOM API linkage?
|
|
|
|
ifneq (,$(MOZILLA_INTERNAL_API)$(LIBXUL_LIBRARY))
|
|
|
|
DEFINES += -DMOZILLA_INTERNAL_API
|
|
|
|
endif
|
|
|
|
|
2004-12-09 19:28:35 +00:00
|
|
|
# Force XPCOM/widget/gfx methods to be _declspec(dllexport) when we're
|
|
|
|
# building libxul libraries
|
|
|
|
ifdef MOZ_ENABLE_LIBXUL
|
|
|
|
ifdef LIBXUL_LIBRARY
|
|
|
|
DEFINES += \
|
|
|
|
-D_IMPL_NS_COM \
|
|
|
|
-DEXPORT_XPT_API \
|
|
|
|
-DEXPORT_XPTC_API \
|
|
|
|
-D_IMPL_NS_GFX \
|
|
|
|
-D_IMPL_NS_WIDGET \
|
2006-02-23 18:13:46 +00:00
|
|
|
-DIMPL_XREAPI \
|
2005-04-05 17:40:32 +00:00
|
|
|
-DIMPL_NS_NET \
|
2007-11-13 19:21:24 +00:00
|
|
|
-DIMPL_THEBES \
|
2004-12-09 19:28:35 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifndef MOZ_NATIVE_ZLIB
|
|
|
|
DEFINES += -DZLIB_INTERNAL
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2004-12-07 02:35:37 +00:00
|
|
|
# Force _all_ exported methods to be |_declspec(dllexport)| when we're
|
|
|
|
# building them into the executable.
|
2005-04-22 19:06:27 +00:00
|
|
|
|
2006-03-08 18:47:19 +00:00
|
|
|
ifeq (,$(filter-out WINNT WINCE OS2, $(OS_ARCH)))
|
2005-10-17 14:57:32 +00:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
2004-12-07 02:35:37 +00:00
|
|
|
DEFINES += \
|
|
|
|
-D_IMPL_NS_GFX \
|
|
|
|
-D_IMPL_NS_MSG_BASE \
|
|
|
|
-D_IMPL_NS_WIDGET \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2005-06-01 11:59:09 +00:00
|
|
|
# Flags passed to make-jars.pl
|
|
|
|
|
|
|
|
MAKE_JARS_FLAGS = \
|
2008-09-19 16:19:52 +00:00
|
|
|
-t $(topsrcdir) \
|
2005-06-01 11:59:09 +00:00
|
|
|
-f $(MOZ_CHROME_FILE_FORMAT) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef USE_EXTENSION_MANIFEST
|
|
|
|
MAKE_JARS_FLAGS += -e
|
|
|
|
endif
|
|
|
|
|
2008-10-20 19:57:47 +00:00
|
|
|
ifdef BOTH_MANIFESTS
|
|
|
|
MAKE_JARS_FLAGS += --both-manifests
|
|
|
|
endif
|
|
|
|
|
2005-06-01 11:59:09 +00:00
|
|
|
TAR_CREATE_FLAGS = -cvhf
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),BSD_OS)
|
|
|
|
TAR_CREATE_FLAGS = -cvLf
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
TAR_CREATE_FLAGS = -cvf
|
|
|
|
endif
|
|
|
|
|
1998-03-28 02:44:41 +00: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.
|
|
|
|
#
|
1998-09-08 03:33:40 +00:00
|
|
|
CCC = $(CXX)
|
2000-03-14 03:00:38 +00:00
|
|
|
NFSPWD = $(CONFIG_TOOLS)/nfspwd
|
1998-03-28 02:44:41 +00:00
|
|
|
PURIFY = purify $(PURIFYOPTIONS)
|
|
|
|
QUANTIFY = quantify $(QUANTIFYOPTIONS)
|
2000-03-31 07:18:52 +00:00
|
|
|
ifdef CROSS_COMPILE
|
2006-01-28 17:32:37 +00:00
|
|
|
XPIDL_COMPILE = $(CYGWIN_WRAPPER) $(LIBXUL_DIST)/host/bin/host_xpidl$(HOST_BIN_SUFFIX)
|
|
|
|
XPIDL_LINK = $(CYGWIN_WRAPPER) $(LIBXUL_DIST)/host/bin/host_xpt_link$(HOST_BIN_SUFFIX)
|
2000-03-31 07:18:52 +00:00
|
|
|
else
|
2006-01-28 17:32:37 +00:00
|
|
|
XPIDL_COMPILE = $(CYGWIN_WRAPPER) $(LIBXUL_DIST)/bin/xpidl$(BIN_SUFFIX)
|
|
|
|
XPIDL_LINK = $(CYGWIN_WRAPPER) $(LIBXUL_DIST)/bin/xpt_link$(BIN_SUFFIX)
|
2000-03-31 07:18:52 +00:00
|
|
|
endif
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-08-28 15:24:32 +00:00
|
|
|
# Java macros
|
|
|
|
JAVA_GEN_DIR = _javagen
|
|
|
|
JAVA_DIST_DIR = $(DEPTH)/$(JAVA_GEN_DIR)
|
2007-01-31 20:54:19 +00:00
|
|
|
JAVA_IFACES_PKG_NAME = org/mozilla/interfaces
|
2006-08-28 15:24:32 +00:00
|
|
|
|
2009-05-18 18:15:05 +00: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 03:35:24 +00:00
|
|
|
|
2008-12-02 19:46:37 +00:00
|
|
|
include $(topsrcdir)/config/static-checking-config.mk
|
2008-02-27 16:28:13 +00:00
|
|
|
|
2009-04-24 21:47:45 +00:00
|
|
|
ifdef MOZ_SHARK
|
|
|
|
OS_CFLAGS += -F/System/Library/PrivateFrameworks
|
|
|
|
OS_CXXFLAGS += -F/System/Library/PrivateFrameworks
|
|
|
|
OS_LDFLAGS += -F/System/Library/PrivateFrameworks -framework CHUD
|
|
|
|
endif # ifdef MOZ_SHARK
|
|
|
|
|
1999-12-24 10:58:11 +00:00
|
|
|
CFLAGS = $(OS_CFLAGS)
|
|
|
|
CXXFLAGS = $(OS_CXXFLAGS)
|
2007-10-13 21:13:50 +00:00
|
|
|
LDFLAGS = $(OS_LDFLAGS) $(MOZ_FIX_LINK_PATHS)
|
2001-11-16 07:42:48 +00:00
|
|
|
|
|
|
|
# Allow each module to override the *default* optimization settings
|
2004-12-06 22:39:54 +00:00
|
|
|
# by setting MODULE_OPTIMIZE_FLAGS if the developer has not given
|
2001-11-16 07:42:48 +00:00
|
|
|
# arguments to --enable-optimize
|
|
|
|
ifdef MOZ_OPTIMIZE
|
|
|
|
ifeq (1,$(MOZ_OPTIMIZE))
|
|
|
|
ifdef MODULE_OPTIMIZE_FLAGS
|
|
|
|
CFLAGS += $(MODULE_OPTIMIZE_FLAGS)
|
|
|
|
CXXFLAGS += $(MODULE_OPTIMIZE_FLAGS)
|
|
|
|
else
|
|
|
|
CFLAGS += $(MOZ_OPTIMIZE_FLAGS)
|
|
|
|
CXXFLAGS += $(MOZ_OPTIMIZE_FLAGS)
|
|
|
|
endif # MODULE_OPTIMIZE_FLAGS
|
|
|
|
else
|
|
|
|
CFLAGS += $(MOZ_OPTIMIZE_FLAGS)
|
|
|
|
CXXFLAGS += $(MOZ_OPTIMIZE_FLAGS)
|
|
|
|
endif # MOZ_OPTIMIZE == 1
|
|
|
|
LDFLAGS += $(MOZ_OPTIMIZE_LDFLAGS)
|
|
|
|
endif # MOZ_OPTIMIZE
|
1999-02-09 23:24:12 +00:00
|
|
|
|
2002-11-15 03:41:17 +00:00
|
|
|
ifdef CROSS_COMPILE
|
|
|
|
HOST_CFLAGS += $(HOST_OPTIMIZE_FLAGS)
|
|
|
|
else
|
|
|
|
ifdef MOZ_OPTIMIZE
|
|
|
|
ifeq (1,$(MOZ_OPTIMIZE))
|
|
|
|
ifdef MODULE_OPTIMIZE_FLAGS
|
|
|
|
HOST_CFLAGS += $(MODULE_OPTIMIZE_FLAGS)
|
|
|
|
else
|
|
|
|
HOST_CFLAGS += $(MOZ_OPTIMIZE_FLAGS)
|
|
|
|
endif # MODULE_OPTIMIZE_FLAGS
|
|
|
|
else
|
|
|
|
HOST_CFLAGS += $(MOZ_OPTIMIZE_FLAGS)
|
|
|
|
endif # MOZ_OPTIMIZE == 1
|
|
|
|
endif # MOZ_OPTIMIZE
|
|
|
|
endif # CROSS_COMPILE
|
|
|
|
|
2010-05-06 18:55:18 +00: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.)
|
|
|
|
ifeq (WINNT_1,$(OS_ARCH)_$(MOZ_PROFILE_GENERATE)$(MOZ_PROFILE_USE))
|
|
|
|
FAIL_ON_WARNINGS_DEBUG=
|
|
|
|
FAIL_ON_WARNINGS=
|
|
|
|
endif # WINNT && (MOS_PROFILE_GENERATE ^ MOZ_PROFILE_USE)
|
|
|
|
|
2010-06-26 22:15:35 +00:00
|
|
|
# Also clear FAIL_ON_WARNINGS[_DEBUG] for Android builds, since
|
|
|
|
# they have some platform-specific warnings we haven't fixed yet.
|
|
|
|
ifeq ($(OS_TARGET),Android)
|
|
|
|
FAIL_ON_WARNINGS_DEBUG=
|
|
|
|
FAIL_ON_WARNINGS=
|
|
|
|
endif # Android
|
|
|
|
|
2010-05-06 18:55:18 +00:00
|
|
|
# Now, check for debug version of flag; it turns on normal flag in debug builds.
|
|
|
|
ifdef FAIL_ON_WARNINGS_DEBUG
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
FAIL_ON_WARNINGS = 1
|
|
|
|
endif # MOZ_DEBUG
|
|
|
|
endif # FAIL_ON_WARNINGS_DEBUG
|
|
|
|
|
|
|
|
# Check for normal version of flag, and add WARNINGS_AS_ERRORS if it's set to 1.
|
|
|
|
ifdef FAIL_ON_WARNINGS
|
|
|
|
CXXFLAGS += $(WARNINGS_AS_ERRORS)
|
|
|
|
CFLAGS += $(WARNINGS_AS_ERRORS)
|
|
|
|
endif # FAIL_ON_WARNINGS
|
2002-08-20 22:21:21 +00:00
|
|
|
|
2003-03-08 05:18:43 +00:00
|
|
|
ifeq ($(OS_ARCH)_$(GNU_CC),WINNT_)
|
2001-12-09 07:08:58 +00:00
|
|
|
#// Currently, unless USE_STATIC_LIBS is defined, the multithreaded
|
|
|
|
#// DLL version of the RTL is used...
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
ifdef USE_STATIC_LIBS
|
|
|
|
RTL_FLAGS=-MT # Statically linked multithreaded RTL
|
2002-02-26 09:26:10 +00:00
|
|
|
ifneq (,$(MOZ_DEBUG)$(NS_TRACE_MALLOC))
|
2006-01-24 18:15:11 +00:00
|
|
|
ifndef MOZ_NO_DEBUG_RTL
|
2001-12-09 07:08:58 +00:00
|
|
|
RTL_FLAGS=-MTd # Statically linked multithreaded MSVC4.0 debug RTL
|
2006-01-24 18:15:11 +00:00
|
|
|
endif
|
2002-02-26 09:26:10 +00:00
|
|
|
endif # MOZ_DEBUG || NS_TRACE_MALLOC
|
2001-12-09 07:08:58 +00:00
|
|
|
|
|
|
|
else # !USE_STATIC_LIBS
|
|
|
|
|
|
|
|
RTL_FLAGS=-MD # Dynamically linked, multithreaded RTL
|
2002-02-26 09:26:10 +00:00
|
|
|
ifneq (,$(MOZ_DEBUG)$(NS_TRACE_MALLOC))
|
2001-12-09 07:08:58 +00:00
|
|
|
ifndef MOZ_NO_DEBUG_RTL
|
|
|
|
RTL_FLAGS=-MDd # Dynamically linked, multithreaded MSVC4.0 debug RTL
|
|
|
|
endif
|
2002-02-26 09:26:10 +00:00
|
|
|
endif # MOZ_DEBUG || NS_TRACE_MALLOC
|
2001-12-09 07:08:58 +00:00
|
|
|
endif # USE_STATIC_LIBS
|
2003-03-08 05:18:43 +00:00
|
|
|
endif # WINNT && !GNU_CC
|
2001-12-09 07:08:58 +00:00
|
|
|
|
2008-02-22 21:08:36 +00:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
|
|
# 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
|
|
|
|
endif
|
2001-12-09 07:08:58 +00:00
|
|
|
|
2009-09-15 17:06:32 +00:00
|
|
|
COMPILE_CFLAGS = $(VISIBILITY_FLAGS) $(DEFINES) $(INCLUDES) $(DSO_CFLAGS) $(DSO_PIC_CFLAGS) $(CFLAGS) $(RTL_FLAGS) $(OS_COMPILE_CFLAGS)
|
2010-04-20 20:12:02 +00:00
|
|
|
COMPILE_CXXFLAGS = $(STL_FLAGS) $(VISIBILITY_FLAGS) $(DEFINES) $(INCLUDES) $(DSO_CFLAGS) $(DSO_PIC_CFLAGS) $(CXXFLAGS) $(RTL_FLAGS) $(OS_COMPILE_CXXFLAGS)
|
2008-02-22 21:08:36 +00:00
|
|
|
COMPILE_CMFLAGS = $(OS_COMPILE_CMFLAGS)
|
|
|
|
COMPILE_CMMFLAGS = $(OS_COMPILE_CMMFLAGS)
|
2008-02-25 23:38:23 +00:00
|
|
|
|
|
|
|
ifndef CROSS_COMPILE
|
2006-04-06 16:51:10 +00:00
|
|
|
HOST_CFLAGS += $(RTL_FLAGS)
|
2008-02-25 23:38:23 +00:00
|
|
|
endif
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Name of the binary code directories
|
|
|
|
#
|
1998-08-19 20:42:14 +00:00
|
|
|
# Override defaults
|
|
|
|
|
1999-01-22 04:00:13 +00: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 05:18:43 +00:00
|
|
|
|
|
|
|
ifneq (WINNT_,$(OS_ARCH)_$(GNU_CC))
|
2005-04-22 19:06:27 +00:00
|
|
|
ifneq (,$(filter-out WINCE,$(OS_ARCH)))
|
1999-05-27 03:35:52 +00:00
|
|
|
LIBS_DIR = -L$(DIST)/bin -L$(DIST)/lib
|
2006-01-28 17:32:37 +00:00
|
|
|
ifdef LIBXUL_SDK
|
|
|
|
LIBS_DIR += -L$(LIBXUL_SDK)/bin -L$(LIBXUL_SDK)/lib
|
|
|
|
endif
|
2001-12-04 21:17:48 +00:00
|
|
|
endif
|
2003-03-08 05:18:43 +00:00
|
|
|
endif
|
1999-01-22 04:00:13 +00:00
|
|
|
|
2000-01-11 05:13:01 +00:00
|
|
|
# Default location of include files
|
2002-02-25 23:20:01 +00:00
|
|
|
IDL_DIR = $(DIST)/idl
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-01-28 17:32:37 +00:00
|
|
|
XPIDL_FLAGS = -I$(srcdir) -I$(IDL_DIR)
|
|
|
|
ifdef LIBXUL_SDK
|
|
|
|
XPIDL_FLAGS += -I$(LIBXUL_SDK)/idl
|
|
|
|
endif
|
|
|
|
|
2009-05-21 18:12:46 +00:00
|
|
|
SDK_LIB_DIR = $(DIST)/sdk/lib
|
|
|
|
SDK_BIN_DIR = $(DIST)/sdk/bin
|
|
|
|
|
1998-08-27 19:52:22 +00:00
|
|
|
DEPENDENCIES = .md
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2004-12-04 05:24:38 +00:00
|
|
|
MOZ_COMPONENT_LIBS=$(XPCOM_LIBS) $(MOZ_COMPONENT_NSPR_LIBS)
|
2000-04-04 04:46:38 +00:00
|
|
|
|
2000-11-21 23:40:34 +00:00
|
|
|
ifeq (xpconnect, $(findstring xpconnect, $(BUILD_MODULES)))
|
2000-12-26 23:49:01 +00:00
|
|
|
DEFINES += -DXPCONNECT_STANDALONE
|
2000-05-16 23:04:54 +00:00
|
|
|
endif
|
|
|
|
|
2000-06-29 03:03:43 +00:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
2000-06-28 22:31:12 +00:00
|
|
|
ELF_DYNSTR_GC = echo
|
|
|
|
else
|
2000-06-28 04:32:15 +00:00
|
|
|
ELF_DYNSTR_GC = :
|
2000-06-28 22:31:12 +00:00
|
|
|
endif
|
2000-06-28 04:32:15 +00:00
|
|
|
|
2010-03-08 17:19:17 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),qt)
|
2010-03-08 16:55:53 +00:00
|
|
|
OS_LIBS += $(MOZ_QT_LIBS)
|
|
|
|
endif
|
|
|
|
|
2000-10-24 21:22:32 +00:00
|
|
|
ifndef CROSS_COMPILE
|
2000-06-28 04:32:15 +00:00
|
|
|
ifdef USE_ELF_DYNSTR_GC
|
|
|
|
ifdef MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS
|
2006-04-12 13:56:58 +00:00
|
|
|
ELF_DYNSTR_GC = $(DEPTH)/config/elf-dynstr-gc
|
2000-06-28 04:32:15 +00:00
|
|
|
endif
|
|
|
|
endif
|
2000-10-24 21:22:32 +00:00
|
|
|
endif
|
2000-06-28 04:32:15 +00:00
|
|
|
|
2002-06-13 08:52:55 +00:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
2005-10-26 19:01:18 +00:00
|
|
|
ifdef NEXT_ROOT
|
|
|
|
export NEXT_ROOT
|
2005-06-01 18:53:30 +00:00
|
|
|
PBBUILD = NEXT_ROOT= $(PBBUILD_BIN)
|
2005-10-26 19:01:18 +00:00
|
|
|
else # NEXT_ROOT
|
|
|
|
PBBUILD = $(PBBUILD_BIN)
|
|
|
|
endif # NEXT_ROOT
|
2007-11-09 07:06:03 +00:00
|
|
|
PBBUILD_SETTINGS = GCC_VERSION="$(GCC_VERSION)" SYMROOT=build ARCHS="$(OS_TEST)"
|
2004-01-29 20:18:14 +00:00
|
|
|
ifdef MACOS_SDK_DIR
|
2005-06-01 18:53:30 +00:00
|
|
|
PBBUILD_SETTINGS += SDKROOT="$(MACOS_SDK_DIR)"
|
|
|
|
endif # MACOS_SDK_DIR
|
|
|
|
ifdef MACOSX_DEPLOYMENT_TARGET
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET
|
|
|
|
PBBUILD_SETTINGS += MACOSX_DEPLOYMENT_TARGET="$(MACOSX_DEPLOYMENT_TARGET)"
|
|
|
|
endif # MACOSX_DEPLOYMENT_TARGET
|
|
|
|
ifdef MOZ_OPTIMIZE
|
|
|
|
ifeq (2,$(MOZ_OPTIMIZE))
|
|
|
|
# Only override project defaults if the config specified explicit settings
|
|
|
|
PBBUILD_SETTINGS += GCC_MODEL_TUNING= OPTIMIZATION_CFLAGS="$(MOZ_OPTIMIZE_FLAGS)"
|
|
|
|
endif # MOZ_OPTIMIZE=2
|
|
|
|
endif # MOZ_OPTIMIZE
|
2005-06-20 19:24:51 +00:00
|
|
|
ifeq (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)
|
|
|
|
else
|
|
|
|
XCODE_PRODUCT_DIR = build
|
|
|
|
endif # HAS_XCODE_2_1=1
|
2005-06-01 18:53:30 +00:00
|
|
|
endif # OS_ARCH=Darwin
|
2002-06-13 08:52:55 +00:00
|
|
|
|
2005-04-22 19:06:27 +00:00
|
|
|
|
1998-12-04 05:07:01 +00:00
|
|
|
ifdef MOZ_NATIVE_MAKEDEPEND
|
|
|
|
MKDEPEND_DIR =
|
2003-08-05 04:43:49 +00:00
|
|
|
MKDEPEND = $(CYGWIN_WRAPPER) $(MOZ_NATIVE_MAKEDEPEND)
|
1998-12-04 05:07:01 +00:00
|
|
|
else
|
2001-04-27 04:19:44 +00:00
|
|
|
MKDEPEND_DIR = $(CONFIG_TOOLS)/mkdepend
|
2003-08-05 04:43:49 +00:00
|
|
|
MKDEPEND = $(CYGWIN_WRAPPER) $(MKDEPEND_DIR)/mkdepend$(BIN_SUFFIX)
|
2002-04-15 22:54:51 +00:00
|
|
|
endif
|
1998-12-04 05:07:01 +00:00
|
|
|
|
2002-09-05 06:28:15 +00:00
|
|
|
# Set link flags according to whether we want a console.
|
|
|
|
ifdef MOZ_WINCONSOLE
|
|
|
|
ifeq ($(MOZ_WINCONSOLE),1)
|
2008-10-11 01:01:28 +00:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
2005-06-01 14:28:35 +00:00
|
|
|
BIN_FLAGS += -Zlinker -PM:VIO
|
2002-09-05 06:28:15 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2004-06-21 20:56:14 +00:00
|
|
|
ifdef GNU_CC
|
|
|
|
WIN32_EXE_LDFLAGS += -mconsole
|
|
|
|
else
|
2005-06-01 14:28:35 +00:00
|
|
|
WIN32_EXE_LDFLAGS += -SUBSYSTEM:CONSOLE
|
2002-09-05 06:28:15 +00:00
|
|
|
endif
|
2004-06-21 20:56:14 +00:00
|
|
|
endif
|
2002-09-05 06:28:15 +00:00
|
|
|
else # MOZ_WINCONSOLE
|
2008-10-11 01:01:28 +00:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
2005-06-01 14:28:35 +00:00
|
|
|
BIN_FLAGS += -Zlinker -PM:PM
|
2002-09-05 06:28:15 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2004-06-21 20:56:14 +00:00
|
|
|
ifdef GNU_CC
|
|
|
|
WIN32_EXE_LDFLAGS += -mwindows
|
|
|
|
else
|
2005-06-01 14:28:35 +00:00
|
|
|
WIN32_EXE_LDFLAGS += -SUBSYSTEM:WINDOWS
|
2002-09-05 06:28:15 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2004-06-21 20:56:14 +00:00
|
|
|
endif
|
2002-09-05 06:28:15 +00:00
|
|
|
|
2005-06-20 13:01:58 +00: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.
|
|
|
|
ifeq ($(GNU_LD)$(OS_ARCH),WINNT)
|
|
|
|
ifdef IS_COMPONENT
|
2006-01-03 21:09:38 +00:00
|
|
|
LDFLAGS += -IMPLIB:fake.lib
|
|
|
|
DELETE_AFTER_LINK = fake.lib fake.exp
|
2005-06-20 13:01:58 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
#
|
|
|
|
# Include any personal overrides the user might think are needed.
|
|
|
|
#
|
2008-06-06 19:43:26 +00:00
|
|
|
-include $(topsrcdir)/$(MOZ_BUILD_APP)/app-config.mk
|
1998-03-28 02:44:41 +00:00
|
|
|
-include $(MY_CONFIG)
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Now test variables that might have been set or overridden by $(MY_CONFIG).
|
|
|
|
|
1999-08-29 18:10:23 +00:00
|
|
|
DEFINES += -DOSTYPE=\"$(OS_CONFIG)\"
|
2007-04-11 16:35:01 +00:00
|
|
|
DEFINES += -DOSARCH=$(OS_ARCH)
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
|
2000-03-14 17:55:03 +00:00
|
|
|
GARBAGE += $(DEPENDENCIES) $(MKDEPENDENCIES) $(MKDEPENDENCIES).bak core $(wildcard core.[0-9]*) $(wildcard *.err) $(wildcard *.pure) $(wildcard *_pure_*.o) Templates.DB
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2003-02-23 15:54:21 +00:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
|
|
ifndef NSDISTMODE
|
|
|
|
NSDISTMODE=absolute_symlink
|
|
|
|
endif
|
2009-03-11 22:39:24 +00:00
|
|
|
PWD := $(CURDIR)
|
2003-02-23 15:54:21 +00:00
|
|
|
endif
|
|
|
|
|
2005-07-28 19:48:12 +00:00
|
|
|
ifdef NSINSTALL_BIN
|
|
|
|
NSINSTALL = $(CYGWIN_WRAPPER) $(NSINSTALL_BIN)
|
|
|
|
else
|
|
|
|
ifeq (OS2,$(CROSS_COMPILE)$(OS_ARCH))
|
2002-11-20 14:17:23 +00:00
|
|
|
NSINSTALL = $(MOZ_TOOLS_DIR)/nsinstall
|
2001-12-04 21:17:48 +00:00
|
|
|
else
|
2009-10-08 18:10:50 +00:00
|
|
|
NSINSTALL = $(CONFIG_TOOLS)/nsinstall$(HOST_BIN_SUFFIX)
|
2005-07-28 19:48:12 +00:00
|
|
|
endif # OS2
|
|
|
|
endif # NSINSTALL_BIN
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2005-07-28 19:48:12 +00:00
|
|
|
ifeq (,$(CROSS_COMPILE)$(filter-out WINNT OS2, $(OS_ARCH)))
|
|
|
|
INSTALL = $(NSINSTALL)
|
|
|
|
else
|
1998-03-28 02:44:41 +00:00
|
|
|
ifeq ($(NSDISTMODE),copy)
|
|
|
|
# copy files, but preserve source mtime
|
|
|
|
INSTALL = $(NSINSTALL) -t
|
|
|
|
else
|
|
|
|
ifeq ($(NSDISTMODE),absolute_symlink)
|
|
|
|
# install using absolute symbolic links
|
2003-02-23 15:54:21 +00:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
|
|
INSTALL = $(NSINSTALL) -L $(PWD)
|
|
|
|
else
|
1998-03-28 02:44:41 +00:00
|
|
|
INSTALL = $(NSINSTALL) -L `$(NFSPWD)`
|
2005-07-28 19:48:12 +00:00
|
|
|
endif # Darwin
|
1998-03-28 02:44:41 +00:00
|
|
|
else
|
|
|
|
# install using relative symbolic links
|
|
|
|
INSTALL = $(NSINSTALL) -R
|
2005-07-28 19:48:12 +00:00
|
|
|
endif # absolute_symlink
|
|
|
|
endif # copy
|
|
|
|
endif # WINNT/OS2
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2002-04-25 02:52:44 +00:00
|
|
|
# Use nsinstall in copy mode to install files on the system
|
|
|
|
SYSINSTALL = $(NSINSTALL) -t
|
2003-08-14 21:36:22 +00:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
ifneq (,$(CYGDRIVE_MOUNT))
|
|
|
|
export CYGDRIVE_MOUNT
|
|
|
|
endif
|
|
|
|
endif
|
2004-11-29 23:14:13 +00: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 13:33:53 +00:00
|
|
|
|
2008-07-22 06:57:07 +00:00
|
|
|
ifndef L10NBASEDIR
|
|
|
|
L10NBASEDIR = $(error L10NBASEDIR not defined by configure)
|
|
|
|
endif
|
|
|
|
|
|
|
|
EXPAND_LOCALE_SRCDIR = $(if $(filter en-US,$(AB_CD)),$(topsrcdir)/$(1)/en-US,$(L10NBASEDIR)/$(AB_CD)/$(subst /locales,,$(1)))
|
2005-01-26 13:33:53 +00:00
|
|
|
|
|
|
|
ifdef relativesrcdir
|
|
|
|
LOCALE_SRCDIR = $(call EXPAND_LOCALE_SRCDIR,$(relativesrcdir))
|
|
|
|
endif
|
2005-03-28 19:36:24 +00:00
|
|
|
|
2005-06-01 11:59:09 +00:00
|
|
|
ifdef LOCALE_SRCDIR
|
2008-10-20 19:57:47 +00:00
|
|
|
# if LOCALE_MERGEDIR is set, use mergedir first, then the localization,
|
|
|
|
# and finally en-US
|
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
MAKE_JARS_FLAGS += -c $(LOCALE_MERGEDIR)/$(subst /locales,,$(relativesrcdir))
|
|
|
|
endif
|
2005-06-01 11:59:09 +00:00
|
|
|
MAKE_JARS_FLAGS += -c $(LOCALE_SRCDIR)
|
2008-10-20 19:57:47 +00:00
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
MAKE_JARS_FLAGS += -c $(topsrcdir)/$(relativesrcdir)/en-US
|
|
|
|
endif
|
2005-06-01 11:59:09 +00:00
|
|
|
endif
|
|
|
|
|
2010-03-10 20:35:31 +00:00
|
|
|
ifdef WINCE
|
2010-03-10 18:36:45 +00:00
|
|
|
RUN_TEST_PROGRAM = $(PYTHON) $(topsrcdir)/build/mobile/devicemanager-run-test.py
|
|
|
|
else
|
2010-03-23 23:24:38 +00:00
|
|
|
ifeq (OS2,$(OS_ARCH))
|
2009-03-26 23:45:15 +00:00
|
|
|
RUN_TEST_PROGRAM = $(topsrcdir)/build/os2/test_os2.cmd "$(DIST)"
|
2010-03-23 23:24:38 +00:00
|
|
|
else
|
|
|
|
ifneq (WINNT,$(OS_ARCH))
|
|
|
|
RUN_TEST_PROGRAM = $(DIST)/bin/run-mozilla.sh
|
|
|
|
endif # ! WINNT
|
|
|
|
endif # ! OS2
|
|
|
|
endif # ! WINCE
|
2009-03-02 06:28:09 +00:00
|
|
|
|
2005-12-18 17:09:28 +00:00
|
|
|
#
|
|
|
|
# Java macros
|
|
|
|
#
|
|
|
|
|
|
|
|
# Make sure any compiled classes work with at least JVM 1.4
|
|
|
|
JAVAC_FLAGS += -source 1.4
|
|
|
|
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
JAVAC_FLAGS += -g
|
|
|
|
endif
|
2008-12-19 14:50:24 +00:00
|
|
|
|
|
|
|
ifdef TIERS
|
|
|
|
DIRS += $(foreach tier,$(TIERS),$(tier_$(tier)_dirs))
|
|
|
|
STATIC_DIRS += $(foreach tier,$(TIERS),$(tier_$(tier)_staticdirs))
|
|
|
|
endif
|