2012-05-21 15:12:37 +04: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 23:21:36 +04:00
|
|
|
|
2012-08-04 22:26:44 +04:00
|
|
|
DEPTH = @DEPTH@
|
2002-08-21 23:21:36 +04:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2012-04-10 21:45:15 +04:00
|
|
|
DIRS = profile/extensions
|
|
|
|
dist_dest = $(DIST)/$(MOZ_MACBUNDLE_NAME)
|
2002-09-29 22:16:54 +04:00
|
|
|
|
2005-08-25 04:59:09 +04:00
|
|
|
PREF_JS_EXPORTS = $(srcdir)/profile/firefox.js \
|
|
|
|
$(NULL)
|
2002-09-29 22:16:54 +04:00
|
|
|
|
2006-08-29 00:17:06 +04:00
|
|
|
|
2004-09-24 22:39:33 +04:00
|
|
|
# hardcode en-US for the moment
|
|
|
|
AB_CD = en-US
|
|
|
|
|
2012-02-21 23:32:55 +04: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 19:22:06 +04:00
|
|
|
-DNEWWINDOW_ICO=\"$(DIST)/branding/newwindow.ico\" \
|
|
|
|
-DNEWTAB_ICO=\"$(DIST)/branding/newtab.ico\" \
|
|
|
|
-DPBMODE_ICO=\"$(DIST)/branding/pbmode.ico\" \
|
|
|
|
|
2012-02-21 23:32:55 +04:00
|
|
|
$(NULL)
|
2006-01-28 20:32:37 +03:00
|
|
|
|
2012-04-10 21:45:15 +04:00
|
|
|
ifdef LIBXUL_SDK #{
|
2012-07-09 14:48:48 +04:00
|
|
|
PREF_JS_EXPORTS += $(srcdir)/profile/channel-prefs.js
|
|
|
|
|
2007-07-19 18:58:54 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
else
|
2006-01-28 20:32:37 +03:00
|
|
|
# Build a binary bootstrapping with XRE_main
|
|
|
|
|
2007-01-25 16:43:52 +03:00
|
|
|
PROGRAM = $(MOZ_APP_NAME)$(BIN_SUFFIX)
|
2002-08-21 23:21:36 +04:00
|
|
|
|
|
|
|
CPPSRCS = nsBrowserApp.cpp
|
|
|
|
|
2012-02-21 23:32:55 +04:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/toolkit/xre \
|
|
|
|
-I$(topsrcdir)/xpcom/base \
|
|
|
|
-I$(topsrcdir)/xpcom/build \
|
|
|
|
-I$(DEPTH)/build \
|
|
|
|
$(NULL)
|
2005-11-23 21:32:55 +03:00
|
|
|
|
2011-05-22 10:23:20 +04:00
|
|
|
DEFINES += -DXPCOM_GLUE
|
|
|
|
STL_FLAGS=
|
2008-09-13 03:57:05 +04:00
|
|
|
|
2005-11-23 17:16:33 +03:00
|
|
|
LIBS += \
|
2002-11-24 10:24:41 +03:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
2011-05-22 10:23:20 +04:00
|
|
|
$(XPCOM_STANDALONE_GLUE_LDOPTS) \
|
2011-02-25 17:02:04 +03:00
|
|
|
$(NULL)
|
|
|
|
|
2012-01-20 12:48:44 +04:00
|
|
|
ifdef MOZ_LINKER
|
2012-06-20 11:00:48 +04:00
|
|
|
LIBS += $(MOZ_ZLIB_LIBS)
|
2012-01-20 12:48:44 +04:00
|
|
|
endif
|
|
|
|
|
2002-08-27 13:59:37 +04:00
|
|
|
ifndef MOZ_WINCONSOLE
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
MOZ_WINCONSOLE = 1
|
|
|
|
else
|
|
|
|
MOZ_WINCONSOLE = 0
|
2002-08-21 23:21:36 +04:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-12-07 07:25:09 +03:00
|
|
|
# This switches $(INSTALL) to copy mode, like $(SYSINSTALL), so things that
|
2008-12-07 07:53:14 +03:00
|
|
|
# shouldn't get 755 perms need $(IFLAGS1) for either way of calling nsinstall.
|
2004-06-18 01:23:51 +04:00
|
|
|
NSDISTMODE = copy
|
|
|
|
|
2002-10-03 10:08:18 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2007-12-31 18:15:43 +03:00
|
|
|
|
|
|
|
ifdef _MSC_VER
|
|
|
|
# Always enter a Windows program through wmain, whether or not we're
|
|
|
|
# a console application.
|
2008-03-12 01:12:52 +03:00
|
|
|
WIN32_EXE_LDFLAGS += -ENTRY:wmainCRTStartup
|
2007-12-31 18:15:43 +03:00
|
|
|
endif
|
|
|
|
|
2011-04-22 03:14:59 +04:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2002-10-03 10:08:18 +04:00
|
|
|
RCINCLUDE = splash.rc
|
2003-06-06 01:59:20 +04:00
|
|
|
ifndef GNU_CC
|
2002-10-03 10:08:18 +04:00
|
|
|
RCFLAGS += -DMOZ_PHOENIX -I$(srcdir)
|
2003-06-06 01:59:20 +04:00
|
|
|
else
|
|
|
|
RCFLAGS += -DMOZ_PHOENIX --include-dir $(srcdir)
|
|
|
|
endif
|
2002-10-03 10:08:18 +04:00
|
|
|
endif
|
|
|
|
|
2003-01-03 01:02:21 +03:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
RESFILE=splashos2.res
|
2004-05-05 17:38:52 +04:00
|
|
|
RCFLAGS += -DMOZ_PHOENIX
|
2009-07-24 04:35:49 +04:00
|
|
|
RCFLAGS += -DFIREFOX_ICO=\"$(DIST)/branding/firefox-os2.ico\" -DDOCUMENT_ICO=\"$(DIST)/branding/document-os2.ico\"
|
2003-01-03 01:02:21 +03:00
|
|
|
endif
|
|
|
|
|
2002-08-21 23:21:36 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-04-10 21:45:15 +04:00
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
2003-11-10 01:17:10 +03: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 21:45:15 +04:00
|
|
|
ifndef GNU_CC #{
|
2006-11-13 20:53:01 +03:00
|
|
|
LDFLAGS += /HEAP:0x40000
|
2012-04-10 21:45:15 +04:00
|
|
|
ifeq ($(OS_TEST),x86_64) #{
|
2010-08-09 07:58:33 +04:00
|
|
|
# set stack to 2MB on x64 build. See bug 582910
|
|
|
|
LDFLAGS += -STACK:2097152
|
2012-04-10 21:45:15 +04:00
|
|
|
endif #}
|
|
|
|
endif #}
|
|
|
|
endif #}
|
2003-11-10 01:17:10 +03:00
|
|
|
|
2011-04-22 03:14:59 +04:00
|
|
|
ifneq (,$(filter-out OS2 WINNT,$(OS_ARCH)))
|
2004-04-19 09:24:35 +04:00
|
|
|
|
2011-05-22 10:23:20 +04:00
|
|
|
libs::
|
|
|
|
cp -p $(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/bin/$(MOZ_APP_NAME)-bin$(BIN_SUFFIX)
|
2002-08-21 23:21:36 +04:00
|
|
|
|
2004-02-11 03:56:17 +03:00
|
|
|
GARBAGE += $(addprefix $(DIST)/bin/defaults/pref/, firefox.js)
|
2002-08-21 23:21:36 +04:00
|
|
|
|
|
|
|
endif
|
2003-04-03 06:33:34 +04:00
|
|
|
|
2012-04-10 21:45:15 +04:00
|
|
|
endif #} LIBXUL_SDK
|
2007-08-03 22:29:29 +04:00
|
|
|
|
2003-11-25 08:02:25 +03:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
2004-04-19 09:24:35 +04:00
|
|
|
libs::
|
2009-07-24 04:35:49 +04:00
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/mozicon128.png $(DIST)/bin/icons
|
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default16.png $(DIST)/bin/chrome/icons/default
|
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default32.png $(DIST)/bin/chrome/icons/default
|
|
|
|
$(INSTALL) $(IFLAGS1) $(DIST)/branding/default48.png $(DIST)/bin/chrome/icons/default
|
2003-11-25 08:02:25 +03:00
|
|
|
endif
|
2009-07-24 04:35:49 +04:00
|
|
|
|
2008-02-04 04:23:37 +03:00
|
|
|
libs:: $(srcdir)/profile/prefs.js
|
2008-12-07 07:25:09 +03:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(DIST)/bin/defaults/profile
|
2008-02-04 04:23:37 +03:00
|
|
|
|
2012-06-11 03:44:50 +04:00
|
|
|
ifndef LIBXUL_SDK
|
2012-05-31 02:17:54 +04:00
|
|
|
# channel-prefs.js is handled separate from other prefs due to bug 756325
|
|
|
|
libs:: $(srcdir)/profile/channel-prefs.js
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/defaults/pref
|
|
|
|
$(PYTHON) $(topsrcdir)/config/Preprocessor.py $(PREF_PPFLAGS) $(ACDEFINES) $^ > $(DIST)/bin/defaults/pref/channel-prefs.js
|
2012-06-11 03:44:50 +04:00
|
|
|
endif
|
2012-05-31 02:17:54 +04:00
|
|
|
|
2008-03-20 01:35:03 +03:00
|
|
|
libs:: $(srcdir)/blocklist.xml
|
2008-12-07 07:25:09 +03:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(DIST)/bin
|
2008-03-20 01:35:03 +03:00
|
|
|
|
2009-09-19 06:59:53 +04:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2003-04-03 06:33:34 +04:00
|
|
|
|
2011-10-27 21:27:56 +04:00
|
|
|
MAC_APP_NAME = $(MOZ_APP_DISPLAYNAME)
|
2003-04-03 06:33:34 +04:00
|
|
|
|
2005-07-20 22:36:14 +04:00
|
|
|
ifdef MOZ_DEBUG
|
2011-10-27 21:27:56 +04:00
|
|
|
MAC_APP_NAME := $(MAC_APP_NAME)Debug
|
2005-07-20 22:36:14 +04:00
|
|
|
endif
|
|
|
|
|
2004-11-30 11:23:02 +03:00
|
|
|
AB_CD = $(MOZ_UI_LOCALE)
|
|
|
|
|
|
|
|
AB := $(firstword $(subst -, ,$(AB_CD)))
|
|
|
|
|
|
|
|
clean clobber repackage::
|
2012-04-10 21:45:15 +04:00
|
|
|
$(RM) -r $(dist_dest)
|
2004-11-30 11:23:02 +03:00
|
|
|
|
2007-08-03 22:29:29 +04:00
|
|
|
ifdef LIBXUL_SDK
|
|
|
|
APPFILES = Resources
|
|
|
|
else
|
|
|
|
APPFILES = MacOS
|
|
|
|
endif
|
|
|
|
|
2012-04-26 21:46:29 +04:00
|
|
|
MAC_BUNDLE_VERSION = $(shell $(PYTHON) $(srcdir)/macversion.py --version=$(MOZ_APP_VERSION) --buildid=$(DEPTH)/config/buildid)
|
|
|
|
|
2012-05-03 14:22:33 +04:00
|
|
|
libs-preqs = \
|
|
|
|
$(call mkdir_deps,$(dist_dest)/Contents/MacOS) \
|
|
|
|
$(call mkdir_deps,$(dist_dest)/Contents/Resources/$(AB).lproj) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
.PHONY: repackage
|
|
|
|
libs repackage:: $(PROGRAM) $(libs-preqs)
|
2012-04-10 21:45:15 +04: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-30 00:00:12 +04: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 21:45:15 +04: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)
|
2007-08-03 22:29:29 +04:00
|
|
|
ifdef LIBXUL_SDK
|
2012-04-10 21:45:15 +04:00
|
|
|
cp $(LIBXUL_DIST)/bin/$(XR_STUB_NAME) $(dist_dest)/Contents/MacOS/firefox
|
2007-08-03 22:29:29 +04:00
|
|
|
else
|
2012-04-10 21:45:15 +04:00
|
|
|
$(RM) $(dist_dest)/Contents/MacOS/$(PROGRAM)
|
|
|
|
rsync -aL $(PROGRAM) $(dist_dest)/Contents/MacOS
|
2007-08-03 22:29:29 +04:00
|
|
|
endif
|
2012-04-10 21:45:15 +04:00
|
|
|
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 06:33:34 +04:00
|
|
|
|
2007-08-03 22:29:29 +04:00
|
|
|
else
|
|
|
|
ifdef LIBXUL_SDK
|
|
|
|
libs::
|
2009-04-18 18:26:33 +04:00
|
|
|
cp $(LIBXUL_DIST)/bin/$(XULRUNNER_STUB_NAME)$(BIN_SUFFIX) $(DIST)/bin/firefox$(BIN_SUFFIX)
|
2007-08-03 22:29:29 +04:00
|
|
|
endif
|
2003-04-03 06:33:34 +04:00
|
|
|
endif
|
2006-01-28 20:32:37 +03:00
|
|
|
|
2012-04-10 21:45:15 +04:00
|
|
|
ifdef LIBXUL_SDK #{
|
|
|
|
ifndef SKIP_COPY_XULRUNNER #{
|
2007-08-03 22:29:29 +04:00
|
|
|
libs::
|
2012-04-10 21:45:15 +04:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) #{
|
|
|
|
rsync -a --copy-unsafe-links $(LIBXUL_DIST)/XUL.framework $(dist_dest)/Contents/Frameworks
|
2007-08-03 22:29:29 +04:00
|
|
|
else
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/xulrunner
|
|
|
|
(cd $(LIBXUL_SDK)/bin && tar $(TAR_CREATE_FLAGS) - .) | (cd $(DIST)/bin/xulrunner && tar -xf -)
|
2012-04-10 21:45:15 +04:00
|
|
|
endif #} cocoa
|
|
|
|
endif #} SKIP_COPY_XULRUNNER
|
|
|
|
endif #} LIBXUL_SDK
|