зеркало из https://github.com/mozilla/gecko-dev.git
106 строки
4.2 KiB
Makefile
106 строки
4.2 KiB
Makefile
# ***** 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 the Mozilla Mac OS X Universal Binary Packaging System
|
|
#
|
|
# The Initial Developer of the Original Code is Google Inc.
|
|
# Portions created by the Initial Developer are Copyright (C) 2006
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Mark Mentovai <mark@moxienet.com> (Original Author)
|
|
#
|
|
# 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 *****
|
|
|
|
# BE CAREFUL! This makefile handles a postflight_all rule for a
|
|
# multi-project build, so DON'T rely on anything that might differ between
|
|
# the two OBJDIRs.
|
|
|
|
ifndef OBJDIR
|
|
OBJDIR_PPC = $(MOZ_OBJDIR)/ppc
|
|
OBJDIR_X86 = $(MOZ_OBJDIR)/i386
|
|
DIST_PPC = $(OBJDIR_PPC)/dist
|
|
DIST_X86 = $(OBJDIR_X86)/dist
|
|
DIST_UNI = $(DIST_PPC)/universal
|
|
OBJDIR = $(OBJDIR_PPC)
|
|
endif
|
|
|
|
include $(OBJDIR)/config/autoconf.mk
|
|
|
|
DIST = $(OBJDIR)/dist
|
|
|
|
ifeq ($(MOZ_BUILD_APP),macbrowser)
|
|
INSTALLER_DIR = camino/installer
|
|
MOZ_PKG_APPNAME = camino
|
|
APPNAME_BASE = Camino
|
|
BUILDCONFIG_JAR = Contents/MacOS/chrome/embed.jar
|
|
else
|
|
ifeq ($(MOZ_BUILD_APP),suite)
|
|
INSTALLER_DIR = xpinstall/packager
|
|
else
|
|
INSTALLER_DIR = $(MOZ_BUILD_APP)/installer
|
|
endif
|
|
MOZ_PKG_APPNAME = $(MOZ_APP_NAME)
|
|
APPNAME_BASE = $(MOZ_APP_DISPLAYNAME)
|
|
BUILDCONFIG_JAR = Contents/MacOS/chrome/toolkit.jar
|
|
endif
|
|
|
|
ifdef MOZ_DEBUG
|
|
APPNAME = $(APPNAME_BASE)Debug
|
|
else
|
|
APPNAME = $(APPNAME_BASE)
|
|
endif
|
|
|
|
postflight_all:
|
|
# Build the universal package out of only the bits that would be released.
|
|
# Call the packager to set this up. Set UNIVERSAL_BINARY= to avoid producing
|
|
# a universal binary too early, before the unified bits have been staged.
|
|
# Set MAKE_PACKAGE= to avoid building a dmg. Set SIGN_NSS= to skip shlibsign.
|
|
$(MAKE) -C $(OBJDIR_PPC)/$(INSTALLER_DIR) \
|
|
UNIVERSAL_BINARY= MAKE_PACKAGE= SIGN_NSS=
|
|
$(MAKE) -C $(OBJDIR_X86)/$(INSTALLER_DIR) \
|
|
UNIVERSAL_BINARY= MAKE_PACKAGE= SIGN_NSS=
|
|
# Remove .chk files that may have been copied from the NSS build. These will
|
|
# cause unify to warn or fail if present. New .chk files that are
|
|
# appropriate for the merged libraries will be generated when the universal
|
|
# dmg is built.
|
|
rm -f $(DIST_PPC)/$(MOZ_PKG_APPNAME)/$(APPNAME).app/Contents/MacOS/*.chk \
|
|
$(DIST_X86)/$(MOZ_PKG_APPNAME)/$(APPNAME).app/Contents/MacOS/*.chk
|
|
# The only difference betewen the two trees now should be the
|
|
# about:buildconfig page. Fix it up.
|
|
$(TOPSRCDIR)/build/macosx/universal/fix-buildconfig \
|
|
$(DIST_PPC)/$(MOZ_PKG_APPNAME)/$(APPNAME).app/$(BUILDCONFIG_JAR) \
|
|
$(DIST_X86)/$(MOZ_PKG_APPNAME)/$(APPNAME).app/$(BUILDCONFIG_JAR)
|
|
mkdir -p $(DIST_UNI)/$(MOZ_PKG_APPNAME)
|
|
rm -f $(DIST_X86)/universal
|
|
ln -s $(DIST_UNI) $(DIST_X86)/universal
|
|
rm -rf $(DIST_UNI)/$(MOZ_PKG_APPNAME)/$(APPNAME).app
|
|
$(TOPSRCDIR)/build/macosx/universal/unify \
|
|
$(DIST_PPC)/$(MOZ_PKG_APPNAME)/$(APPNAME).app \
|
|
$(DIST_X86)/$(MOZ_PKG_APPNAME)/$(APPNAME).app \
|
|
$(DIST_UNI)/$(MOZ_PKG_APPNAME)/$(APPNAME).app
|
|
# A universal .dmg can now be produced by making in either architecture's
|
|
# INSTALLER_DIR.
|