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-04-10 10:45:15 -07:00
|
|
|
dist_dest = $(DIST)/$(MOZ_MACBUNDLE_NAME)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 16:26:32 -07:00
|
|
|
ifdef ENABLE_MARIONETTE
|
|
|
|
DEFINES += -DENABLE_MARIONETTE=1
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PREF_JS_EXPORTS = $(srcdir)/profile/firefox.js \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
|
|
|
|
# hardcode en-US for the moment
|
|
|
|
AB_CD = en-US
|
|
|
|
|
2012-02-21 11:32:55 -08: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 08:22:06 -07:00
|
|
|
-DNEWWINDOW_ICO=\"$(DIST)/branding/newwindow.ico\" \
|
|
|
|
-DNEWTAB_ICO=\"$(DIST)/branding/newtab.ico\" \
|
|
|
|
-DPBMODE_ICO=\"$(DIST)/branding/pbmode.ico\" \
|
2013-01-14 11:16:38 -08:00
|
|
|
$(NULL)
|
2013-01-09 23:38:50 -08:00
|
|
|
|
2013-01-09 23:38:50 -08:00
|
|
|
ifdef MOZILLA_OFFICIAL
|
|
|
|
DEFINES += -DMOZILLA_OFFICIAL
|
|
|
|
endif
|
|
|
|
|
2012-04-10 10:45:15 -07:00
|
|
|
ifdef LIBXUL_SDK #{
|
2012-07-09 03:48:48 -07:00
|
|
|
PREF_JS_EXPORTS += $(srcdir)/profile/channel-prefs.js
|
2013-01-03 07:04:42 -08:00
|
|
|
DEFINES += -DLIBXUL_SDK
|
|
|
|
endif #} LIBXUL_SDK
|
2012-07-09 03:48:48 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
# Build a binary bootstrapping with XRE_main
|
|
|
|
|
2012-02-21 11:32:55 -08:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/toolkit/xre \
|
|
|
|
-I$(topsrcdir)/xpcom/base \
|
|
|
|
-I$(topsrcdir)/xpcom/build \
|
|
|
|
-I$(DEPTH)/build \
|
|
|
|
$(NULL)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-21 23:23:20 -07:00
|
|
|
DEFINES += -DXPCOM_GLUE
|
|
|
|
STL_FLAGS=
|
2008-09-12 16:57:05 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
LIBS += \
|
2011-05-21 23:23:20 -07:00
|
|
|
$(XPCOM_STANDALONE_GLUE_LDOPTS) \
|
2011-02-25 06:02:04 -08:00
|
|
|
$(NULL)
|
|
|
|
|
2012-01-20 00:48:44 -08:00
|
|
|
ifdef MOZ_LINKER
|
2012-06-20 00:00:48 -07:00
|
|
|
LIBS += $(MOZ_ZLIB_LIBS)
|
2012-01-20 00:48:44 -08:00
|
|
|
endif
|
|
|
|
|
2013-03-26 03:31:20 -07:00
|
|
|
ifdef HAVE_CLOCK_MONOTONIC
|
|
|
|
LIBS += $(REALTIME_LIBS)
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifndef MOZ_WINCONSOLE
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
MOZ_WINCONSOLE = 1
|
|
|
|
else
|
|
|
|
MOZ_WINCONSOLE = 0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-12-06 20:25:09 -08:00
|
|
|
# This switches $(INSTALL) to copy mode, like $(SYSINSTALL), so things that
|
2008-12-06 20:53:14 -08:00
|
|
|
# shouldn't get 755 perms need $(IFLAGS1) for either way of calling nsinstall.
|
2007-03-22 10:30:00 -07:00
|
|
|
NSDISTMODE = copy
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
2007-12-31 07:15:43 -08:00
|
|
|
|
|
|
|
ifdef _MSC_VER
|
|
|
|
# Always enter a Windows program through wmain, whether or not we're
|
|
|
|
# a console application.
|
2008-03-11 15:12:52 -07:00
|
|
|
WIN32_EXE_LDFLAGS += -ENTRY:wmainCRTStartup
|
2007-12-31 07:15:43 -08:00
|
|
|
endif
|
|
|
|
|
2011-04-21 16:14:59 -07:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2007-03-22 10:30:00 -07:00
|
|
|
RCINCLUDE = splash.rc
|
2013-05-07 01:16:43 -07: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 12:27:17 -07:00
|
|
|
# Note the manifest file exists in the tree, so we use the explicit filename
|
|
|
|
# here.
|
|
|
|
EXTRA_DEPS += firefox.exe.manifest
|
2007-03-22 10:30:00 -07:00
|
|
|
ifndef GNU_CC
|
|
|
|
RCFLAGS += -DMOZ_PHOENIX -I$(srcdir)
|
|
|
|
else
|
|
|
|
RCFLAGS += -DMOZ_PHOENIX --include-dir $(srcdir)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
RESFILE=splashos2.res
|
|
|
|
RCFLAGS += -DMOZ_PHOENIX
|
2009-07-23 17:35:49 -07:00
|
|
|
RCFLAGS += -DFIREFOX_ICO=\"$(DIST)/branding/firefox-os2.ico\" -DDOCUMENT_ICO=\"$(DIST)/branding/document-os2.ico\"
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
2013-02-11 05:10:16 -08:00
|
|
|
PROGRAMS_DEST = $(DIST)/bin
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-04-10 10:45:15 -07:00
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
2007-03-22 10:30:00 -07: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 10:45:15 -07:00
|
|
|
ifndef GNU_CC #{
|
2007-03-22 10:30:00 -07:00
|
|
|
LDFLAGS += /HEAP:0x40000
|
2012-04-10 10:45:15 -07:00
|
|
|
endif #}
|
|
|
|
endif #}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-04-21 16:14:59 -07:00
|
|
|
ifneq (,$(filter-out OS2 WINNT,$(OS_ARCH)))
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-21 23:23:20 -07:00
|
|
|
libs::
|
|
|
|
cp -p $(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/bin/$(MOZ_APP_NAME)-bin$(BIN_SUFFIX)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-05 11:43:23 -07:00
|
|
|
GARBAGE += $(addprefix $(FINAL_TARGET)/defaults/pref/, firefox.js)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2013-06-11 10:40:28 -07:00
|
|
|
ifdef MOZ_WIDGET_GTK
|
2007-03-22 10:30:00 -07:00
|
|
|
libs::
|
2012-09-05 11:43:23 -07: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
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
2009-07-23 17:35:49 -07:00
|
|
|
|
2008-02-03 17:23:37 -08:00
|
|
|
libs:: $(srcdir)/profile/prefs.js
|
2012-09-05 11:43:23 -07:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile
|
2008-02-03 17:23:37 -08:00
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
ifndef LIBXUL_SDK
|
2012-05-30 15:17:54 -07:00
|
|
|
# channel-prefs.js is handled separate from other prefs due to bug 756325
|
|
|
|
libs:: $(srcdir)/profile/channel-prefs.js
|
2012-09-07 11:34:08 -07:00
|
|
|
$(NSINSTALL) -D $(DIST)/bin/defaults/pref
|
|
|
|
$(PYTHON) $(topsrcdir)/config/Preprocessor.py $(PREF_PPFLAGS) $(ACDEFINES) $^ > $(DIST)/bin/defaults/pref/channel-prefs.js
|
2012-06-10 16:44:50 -07:00
|
|
|
endif
|
2012-05-30 15:17:54 -07:00
|
|
|
|
2008-03-19 15:35:03 -07:00
|
|
|
libs:: $(srcdir)/blocklist.xml
|
2012-09-05 11:43:23 -07:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)
|
2008-03-19 15:35:03 -07:00
|
|
|
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-27 10:27:56 -07:00
|
|
|
MAC_APP_NAME = $(MOZ_APP_DISPLAYNAME)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
ifdef MOZ_DEBUG
|
2011-10-27 10:27:56 -07:00
|
|
|
MAC_APP_NAME := $(MAC_APP_NAME)Debug
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
AB_CD = $(MOZ_UI_LOCALE)
|
|
|
|
|
|
|
|
AB := $(firstword $(subst -, ,$(AB_CD)))
|
|
|
|
|
|
|
|
clean clobber repackage::
|
2012-04-10 10:45:15 -07:00
|
|
|
$(RM) -r $(dist_dest)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-03 11:29:29 -07:00
|
|
|
ifdef LIBXUL_SDK
|
|
|
|
APPFILES = Resources
|
|
|
|
else
|
|
|
|
APPFILES = MacOS
|
|
|
|
endif
|
|
|
|
|
2012-04-26 10:46:29 -07:00
|
|
|
MAC_BUNDLE_VERSION = $(shell $(PYTHON) $(srcdir)/macversion.py --version=$(MOZ_APP_VERSION) --buildid=$(DEPTH)/config/buildid)
|
|
|
|
|
2012-05-03 03:22:33 -07:00
|
|
|
.PHONY: repackage
|
2013-09-04 23:08:24 -07:00
|
|
|
tools repackage:: $(PROGRAM)
|
2013-05-06 12:00:07 -07:00
|
|
|
$(MKDIR) -p $(dist_dest)/Contents/MacOS
|
|
|
|
$(MKDIR) -p $(dist_dest)/Contents/Resources/$(AB).lproj
|
2012-04-10 10:45:15 -07: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 13:00:12 -07: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 10:45:15 -07: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
|
|
|
|
rsync -a $(DIST)/bin/ $(dist_dest)/Contents/$(APPFILES)
|
|
|
|
$(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
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
2012-04-10 10:45:15 -07:00
|
|
|
ifdef LIBXUL_SDK #{
|
|
|
|
ifndef SKIP_COPY_XULRUNNER #{
|
2007-08-03 11:29:29 -07:00
|
|
|
libs::
|
2012-04-10 10:45:15 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) #{
|
|
|
|
rsync -a --copy-unsafe-links $(LIBXUL_DIST)/XUL.framework $(dist_dest)/Contents/Frameworks
|
2007-08-03 11:29:29 -07:00
|
|
|
else
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/xulrunner
|
|
|
|
(cd $(LIBXUL_SDK)/bin && tar $(TAR_CREATE_FLAGS) - .) | (cd $(DIST)/bin/xulrunner && tar -xf -)
|
2012-04-10 10:45:15 -07:00
|
|
|
endif #} cocoa
|
|
|
|
endif #} SKIP_COPY_XULRUNNER
|
|
|
|
endif #} LIBXUL_SDK
|