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/.
|
2002-08-21 19:21:36 +00:00
|
|
|
|
2012-04-10 17:45:15 +00:00
|
|
|
dist_dest = $(DIST)/$(MOZ_MACBUNDLE_NAME)
|
2002-09-29 18:16:54 +00:00
|
|
|
|
2012-08-22 23:26:32 +00:00
|
|
|
ifdef ENABLE_MARIONETTE
|
|
|
|
DEFINES += -DENABLE_MARIONETTE=1
|
|
|
|
endif
|
|
|
|
|
2005-08-25 00:59:09 +00:00
|
|
|
PREF_JS_EXPORTS = $(srcdir)/profile/firefox.js \
|
|
|
|
$(NULL)
|
2002-09-29 18:16:54 +00:00
|
|
|
|
2006-08-28 20:17:06 +00:00
|
|
|
|
2004-09-24 18:39:33 +00:00
|
|
|
# hardcode en-US for the moment
|
|
|
|
AB_CD = en-US
|
|
|
|
|
2012-02-21 19:32:55 +00:00
|
|
|
DEFINES += \
|
|
|
|
-DAB_CD=$(AB_CD) \
|
|
|
|
-DAPP_VERSION="$(MOZ_APP_VERSION)" \
|
|
|
|
-DFIREFOX_ICO=\"$(DIST)/branding/firefox.ico\" \
|
|
|
|
-DDOCUMENT_ICO=\"$(DIST)/branding/document.ico\" \
|
2012-04-28 15:22:06 +00:00
|
|
|
-DNEWWINDOW_ICO=\"$(DIST)/branding/newwindow.ico\" \
|
|
|
|
-DNEWTAB_ICO=\"$(DIST)/branding/newtab.ico\" \
|
|
|
|
-DPBMODE_ICO=\"$(DIST)/branding/pbmode.ico\" \
|
2013-01-14 19:16:38 +00:00
|
|
|
$(NULL)
|
2013-01-10 07:38:50 +00:00
|
|
|
|
2013-01-10 07:38:50 +00:00
|
|
|
ifdef MOZILLA_OFFICIAL
|
|
|
|
DEFINES += -DMOZILLA_OFFICIAL
|
|
|
|
endif
|
|
|
|
|
2012-04-10 17:45:15 +00:00
|
|
|
ifdef LIBXUL_SDK #{
|
2012-07-09 10:48:48 +00:00
|
|
|
PREF_JS_EXPORTS += $(srcdir)/profile/channel-prefs.js
|
2013-01-03 15:04:42 +00:00
|
|
|
DEFINES += -DLIBXUL_SDK
|
|
|
|
endif #} LIBXUL_SDK
|
2012-07-09 10:48:48 +00:00
|
|
|
|
2006-01-28 17:32:37 +00:00
|
|
|
# Build a binary bootstrapping with XRE_main
|
|
|
|
|
2012-02-21 19:32:55 +00:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/toolkit/xre \
|
|
|
|
-I$(topsrcdir)/xpcom/base \
|
|
|
|
-I$(topsrcdir)/xpcom/build \
|
|
|
|
-I$(DEPTH)/build \
|
|
|
|
$(NULL)
|
2005-11-23 18:32:55 +00:00
|
|
|
|
2011-05-22 06:23:20 +00:00
|
|
|
DEFINES += -DXPCOM_GLUE
|
|
|
|
STL_FLAGS=
|
2008-09-12 23:57:05 +00:00
|
|
|
|
2005-11-23 14:16:33 +00:00
|
|
|
LIBS += \
|
2011-05-22 06:23:20 +00:00
|
|
|
$(XPCOM_STANDALONE_GLUE_LDOPTS) \
|
2011-02-25 14:02:04 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2012-01-20 08:48:44 +00:00
|
|
|
ifdef MOZ_LINKER
|
2012-06-20 07:00:48 +00:00
|
|
|
LIBS += $(MOZ_ZLIB_LIBS)
|
2012-01-20 08:48:44 +00:00
|
|
|
endif
|
|
|
|
|
2013-03-26 10:31:20 +00:00
|
|
|
ifdef HAVE_CLOCK_MONOTONIC
|
|
|
|
LIBS += $(REALTIME_LIBS)
|
|
|
|
endif
|
|
|
|
|
2002-08-27 09:59:37 +00:00
|
|
|
ifndef MOZ_WINCONSOLE
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
MOZ_WINCONSOLE = 1
|
|
|
|
else
|
|
|
|
MOZ_WINCONSOLE = 0
|
2002-08-21 19:21:36 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-12-07 04:25:09 +00:00
|
|
|
# This switches $(INSTALL) to copy mode, like $(SYSINSTALL), so things that
|
2008-12-07 04:53:14 +00:00
|
|
|
# shouldn't get 755 perms need $(IFLAGS1) for either way of calling nsinstall.
|
2004-06-17 21:23:51 +00:00
|
|
|
NSDISTMODE = copy
|
|
|
|
|
2002-10-03 06:08:18 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2007-12-31 15:15:43 +00:00
|
|
|
|
|
|
|
ifdef _MSC_VER
|
|
|
|
# Always enter a Windows program through wmain, whether or not we're
|
|
|
|
# a console application.
|
2008-03-11 22:12:52 +00:00
|
|
|
WIN32_EXE_LDFLAGS += -ENTRY:wmainCRTStartup
|
2007-12-31 15:15:43 +00:00
|
|
|
endif
|
|
|
|
|
2011-04-21 23:14:59 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2002-10-03 06:08:18 +00:00
|
|
|
RCINCLUDE = splash.rc
|
2013-05-07 08:16:43 +00:00
|
|
|
# Rebuild firefox.exe if the manifest changes - it's included by splash.rc.
|
|
|
|
# (this dependency should really be just for firefox.exe, not other targets)
|
2013-09-26 19:27:17 +00:00
|
|
|
# Note the manifest file exists in the tree, so we use the explicit filename
|
|
|
|
# here.
|
|
|
|
EXTRA_DEPS += firefox.exe.manifest
|
2003-06-05 21:59:20 +00:00
|
|
|
ifndef GNU_CC
|
2002-10-03 06:08:18 +00:00
|
|
|
RCFLAGS += -DMOZ_PHOENIX -I$(srcdir)
|
2003-06-05 21:59:20 +00:00
|
|
|
else
|
|
|
|
RCFLAGS += -DMOZ_PHOENIX --include-dir $(srcdir)
|
|
|
|
endif
|
2002-10-03 06:08:18 +00:00
|
|
|
endif
|
|
|
|
|
2003-01-02 22:02:21 +00:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
RESFILE=splashos2.res
|
2004-05-05 13:38:52 +00:00
|
|
|
RCFLAGS += -DMOZ_PHOENIX
|
2009-07-24 00:35:49 +00:00
|
|
|
RCFLAGS += -DFIREFOX_ICO=\"$(DIST)/branding/firefox-os2.ico\" -DDOCUMENT_ICO=\"$(DIST)/branding/document-os2.ico\"
|
2003-01-02 22:02:21 +00:00
|
|
|
endif
|
|
|
|
|
2013-02-11 13:10:16 +00:00
|
|
|
PROGRAMS_DEST = $(DIST)/bin
|
|
|
|
|
2002-08-21 19:21:36 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-04-10 17:45:15 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
2003-11-09 22:17:10 +00:00
|
|
|
#
|
|
|
|
# Control the default heap size.
|
|
|
|
# This is the heap returned by GetProcessHeap().
|
|
|
|
# As we use the CRT heap, the default size is too large and wastes VM.
|
|
|
|
#
|
|
|
|
# The default heap size is 1MB on Win32.
|
|
|
|
# The heap will grow if need be.
|
|
|
|
#
|
|
|
|
# Set it to 256k. See bug 127069.
|
|
|
|
#
|
2012-04-10 17:45:15 +00:00
|
|
|
ifndef GNU_CC #{
|
2006-11-13 17:53:01 +00:00
|
|
|
LDFLAGS += /HEAP:0x40000
|
2012-04-10 17:45:15 +00:00
|
|
|
endif #}
|
|
|
|
endif #}
|
2003-11-09 22:17:10 +00:00
|
|
|
|
2011-04-21 23:14:59 +00:00
|
|
|
ifneq (,$(filter-out OS2 WINNT,$(OS_ARCH)))
|
2004-04-19 05:24:35 +00:00
|
|
|
|
2013-11-07 01:37:45 +00:00
|
|
|
ifdef COMPILE_ENVIRONMENT
|
2011-05-22 06:23:20 +00:00
|
|
|
libs::
|
|
|
|
cp -p $(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/bin/$(MOZ_APP_NAME)-bin$(BIN_SUFFIX)
|
2013-11-07 01:37:45 +00:00
|
|
|
endif
|
2002-08-21 19:21:36 +00:00
|
|
|
|
2012-09-05 18:43:23 +00:00
|
|
|
GARBAGE += $(addprefix $(FINAL_TARGET)/defaults/pref/, firefox.js)
|
2002-08-21 19:21:36 +00:00
|
|
|
|
|
|
|
endif
|
2003-04-03 02:33:34 +00:00
|
|
|
|
2013-06-11 17:40:28 +00:00
|
|
|
ifdef MOZ_WIDGET_GTK
|
2004-04-19 05:24:35 +00:00
|
|
|
libs::
|
2012-09-05 18:43:23 +00:00
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/mozicon128.png $(FINAL_TARGET)/icons
|
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default16.png $(FINAL_TARGET)/chrome/icons/default
|
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default32.png $(FINAL_TARGET)/chrome/icons/default
|
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default48.png $(FINAL_TARGET)/chrome/icons/default
|
2003-11-25 05:02:25 +00:00
|
|
|
endif
|
2009-07-24 00:35:49 +00:00
|
|
|
|
2008-02-04 01:23:37 +00:00
|
|
|
libs:: $(srcdir)/profile/prefs.js
|
2012-09-05 18:43:23 +00:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile
|
2008-02-04 01:23:37 +00:00
|
|
|
|
2012-06-10 23:44:50 +00:00
|
|
|
ifndef LIBXUL_SDK
|
2012-05-30 22:17:54 +00:00
|
|
|
# channel-prefs.js is handled separate from other prefs due to bug 756325
|
|
|
|
libs:: $(srcdir)/profile/channel-prefs.js
|
2012-09-07 18:34:08 +00:00
|
|
|
$(NSINSTALL) -D $(DIST)/bin/defaults/pref
|
2013-11-09 01:35:44 +00:00
|
|
|
$(call py_action,preprocessor,$(PREF_PPFLAGS) $(ACDEFINES) $^ -o $(DIST)/bin/defaults/pref/channel-prefs.js)
|
2012-06-10 23:44:50 +00:00
|
|
|
endif
|
2012-05-30 22:17:54 +00:00
|
|
|
|
2008-03-19 22:35:03 +00:00
|
|
|
libs:: $(srcdir)/blocklist.xml
|
2012-09-05 18:43:23 +00:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)
|
2008-03-19 22:35:03 +00:00
|
|
|
|
2009-09-19 02:59:53 +00:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2003-04-03 02:33:34 +00:00
|
|
|
|
2011-10-27 17:27:56 +00:00
|
|
|
MAC_APP_NAME = $(MOZ_APP_DISPLAYNAME)
|
2003-04-03 02:33:34 +00:00
|
|
|
|
2005-07-20 18:36:14 +00:00
|
|
|
ifdef MOZ_DEBUG
|
2011-10-27 17:27:56 +00:00
|
|
|
MAC_APP_NAME := $(MAC_APP_NAME)Debug
|
2005-07-20 18:36:14 +00:00
|
|
|
endif
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
AB_CD = $(MOZ_UI_LOCALE)
|
|
|
|
|
|
|
|
AB := $(firstword $(subst -, ,$(AB_CD)))
|
|
|
|
|
2013-11-08 02:42:22 +00:00
|
|
|
clean clobber repackage::
|
2012-04-10 17:45:15 +00:00
|
|
|
$(RM) -r $(dist_dest)
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2007-08-03 18:29:29 +00:00
|
|
|
ifdef LIBXUL_SDK
|
|
|
|
APPFILES = Resources
|
|
|
|
else
|
|
|
|
APPFILES = MacOS
|
|
|
|
endif
|
|
|
|
|
2012-04-26 17:46:29 +00:00
|
|
|
MAC_BUNDLE_VERSION = $(shell $(PYTHON) $(srcdir)/macversion.py --version=$(MOZ_APP_VERSION) --buildid=$(DEPTH)/config/buildid)
|
|
|
|
|
2013-11-08 02:42:22 +00:00
|
|
|
.PHONY: repackage
|
|
|
|
tools repackage:: $(PROGRAM)
|
2013-05-06 19:00:07 +00:00
|
|
|
$(MKDIR) -p $(dist_dest)/Contents/MacOS
|
|
|
|
$(MKDIR) -p $(dist_dest)/Contents/Resources/$(AB).lproj
|
2012-04-10 17:45:15 +00:00
|
|
|
rsync -a --exclude "*.in" $(srcdir)/macbuild/Contents $(dist_dest) --exclude English.lproj
|
|
|
|
rsync -a --exclude "*.in" $(srcdir)/macbuild/Contents/Resources/English.lproj/ $(dist_dest)/Contents/Resources/$(AB).lproj
|
2012-04-29 20:00:12 +00:00
|
|
|
sed -e "s/%APP_VERSION%/$(MOZ_APP_VERSION)/" -e "s/%MAC_APP_NAME%/$(MAC_APP_NAME)/" -e "s/%MOZ_MACBUNDLE_ID%/$(MOZ_MACBUNDLE_ID)/" -e "s/%MAC_BUNDLE_VERSION%/$(MAC_BUNDLE_VERSION)/" $(srcdir)/macbuild/Contents/Info.plist.in > $(dist_dest)/Contents/Info.plist
|
2012-04-10 17:45:15 +00:00
|
|
|
sed -e "s/%MAC_APP_NAME%/$(MAC_APP_NAME)/" $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | iconv -f UTF-8 -t UTF-16 > $(dist_dest)/Contents/Resources/$(AB).lproj/InfoPlist.strings
|
2013-11-08 02:42:22 +00:00
|
|
|
rsync -a $(DIST)/bin/ $(dist_dest)/Contents/$(APPFILES)
|
2012-04-10 17:45:15 +00:00
|
|
|
$(RM) $(dist_dest)/Contents/MacOS/$(PROGRAM)
|
|
|
|
rsync -aL $(PROGRAM) $(dist_dest)/Contents/MacOS
|
|
|
|
cp -RL $(DIST)/branding/firefox.icns $(dist_dest)/Contents/Resources/firefox.icns
|
|
|
|
cp -RL $(DIST)/branding/document.icns $(dist_dest)/Contents/Resources/document.icns
|
|
|
|
printf APPLMOZB > $(dist_dest)/Contents/PkgInfo
|
2003-04-03 02:33:34 +00:00
|
|
|
endif
|
2006-01-28 17:32:37 +00:00
|
|
|
|
2012-04-10 17:45:15 +00:00
|
|
|
ifdef LIBXUL_SDK #{
|
|
|
|
ifndef SKIP_COPY_XULRUNNER #{
|
2007-08-03 18:29:29 +00:00
|
|
|
libs::
|
2012-04-10 17:45:15 +00:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) #{
|
|
|
|
rsync -a --copy-unsafe-links $(LIBXUL_DIST)/XUL.framework $(dist_dest)/Contents/Frameworks
|
2007-08-03 18:29:29 +00:00
|
|
|
else
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/xulrunner
|
|
|
|
(cd $(LIBXUL_SDK)/bin && tar $(TAR_CREATE_FLAGS) - .) | (cd $(DIST)/bin/xulrunner && tar -xf -)
|
2012-04-10 17:45:15 +00:00
|
|
|
endif #} cocoa
|
|
|
|
endif #} SKIP_COPY_XULRUNNER
|
|
|
|
endif #} LIBXUL_SDK
|