2002-08-27 13:59:37 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
2003-09-29 10:04:02 +04:00
|
|
|
# Brian Ryner <bryner@brianryner.com>
|
2003-06-06 01:59:20 +04:00
|
|
|
# Jonathan Wilson <jonwil@tpgi.com.au>
|
|
|
|
# Dan Mosedale <dmose@mozilla.org>
|
2006-01-28 20:32:37 +03:00
|
|
|
# Benjamin Smedberg <benjamin@smedbergs.us>
|
2011-06-26 20:27:59 +04:00
|
|
|
# Jared Wein <jwein@mozilla.com>
|
2002-08-27 13:59:37 +04:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either 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 *****
|
2002-08-21 23:21:36 +04:00
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
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 \
|
|
|
|
$(srcdir)/profile/channel-prefs.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\" \
|
|
|
|
$(NULL)
|
2006-01-28 20:32:37 +03:00
|
|
|
|
2012-04-10 21:45:15 +04:00
|
|
|
ifdef LIBXUL_SDK #{
|
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
|
|
|
|
LIBS += $(ZLIB_LIBS)
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
2011-10-27 21:27:56 +04:00
|
|
|
LOWER_MAC_APP_NAME = $(shell echo $(MAC_APP_NAME) | tr '[A-Z]' '[a-z]')
|
2010-03-24 07:45:40 +03:00
|
|
|
|
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
|
|
|
|
|
2011-11-22 11:05:59 +04:00
|
|
|
libs repackage:: $(PROGRAM)
|
2012-04-10 21:45:15 +04:00
|
|
|
$(MKDIR) -p $(dist_dest)/Contents/MacOS
|
|
|
|
rsync -a --exclude "*.in" $(srcdir)/macbuild/Contents $(dist_dest) --exclude English.lproj
|
|
|
|
$(MKDIR) -p $(dist_dest)/Contents/Resources/$(AB).lproj
|
|
|
|
rsync -a --exclude "*.in" $(srcdir)/macbuild/Contents/Resources/English.lproj/ $(dist_dest)/Contents/Resources/$(AB).lproj
|
|
|
|
sed -e "s/%APP_VERSION%/$(MOZ_APP_VERSION)/" -e "s/%MAC_APP_NAME%/$(MAC_APP_NAME)/" -e "s/%LOWER_MAC_APP_NAME%/$(LOWER_MAC_APP_NAME)/" $(srcdir)/macbuild/Contents/Info.plist.in > $(dist_dest)/Contents/Info.plist
|
|
|
|
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
|