Bug 454376 imgLoader.cpp does not compile with Sun Studio 12 on Solaris r=joedraw...
[wine-gecko.git] / tools / update-packaging / Makefile.in
blob3c33aab1a79229961f2650211d6ab8b9ee86bd80
1 # vim:set ts=8 sw=8 sts=8 noet:
3 # ***** BEGIN LICENSE BLOCK *****
4 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 # The contents of this file are subject to the Mozilla Public License Version
7 # 1.1 (the "License"); you may not use this file except in compliance with
8 # the License. You may obtain a copy of the License at
9 # http://www.mozilla.org/MPL/
11 # Software distributed under the License is distributed on an "AS IS" basis,
12 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 # for the specific language governing rights and limitations under the
14 # License.
16 # The Original Code is mozilla.org code.
18 # The Initial Developer of the Original Code is Google Inc.
19 # Portions created by the Initial Developer are Copyright (C) 2005
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
23 # Darin Fisher <darin@meer.net>
24 # Chase Phillips <chase@mozilla.org>
26 # Alternatively, the contents of this file may be used under the terms of
27 # either of the GNU General Public License Version 2 or later (the "GPL"),
28 # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 # in which case the provisions of the GPL or the LGPL are applicable instead
30 # of those above. If you wish to allow use of your version of this file only
31 # under the terms of either the GPL or the LGPL, and not to allow others to
32 # use your version of this file under the terms of the MPL, indicate your
33 # decision by deleting the provisions above and replace them with the notice
34 # and other provisions required by the GPL or the LGPL. If you do not delete
35 # the provisions above, a recipient may use your version of this file under
36 # the terms of any one of the MPL, the GPL or the LGPL.
38 # ***** END LICENSE BLOCK *****
40 DEPTH = ../..
41 topsrcdir = @top_srcdir@
42 srcdir = @srcdir@
43 VPATH = @srcdir@
45 include $(DEPTH)/config/autoconf.mk
47 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
49 # Default output location for update archive
50 STAGE_DIR = $(DIST)/update
52 ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
53 ifdef UNIVERSAL_BINARY
54 ifneq (,$(filter %/l10n-stage,$(DIST)))
55 PACKAGE_DIR = $(DIST)/$(MOZ_PKG_APPNAME)/$(MOZ_APP_DISPLAYNAME).app
56 else
57 PACKAGE_DIR = $(DIST)/universal/$(MOZ_PKG_APPNAME)/$(MOZ_APP_DISPLAYNAME).app
58 endif
59 else
60 PACKAGE_DIR = $(DIST)/$(MOZ_PKG_APPNAME)/$(MOZ_APP_DISPLAYNAME).app
61 endif
62 else
63 PACKAGE_DIR = $(DIST)/$(MOZ_PKG_APPNAME)
64 endif
66 MAR_BIN = $(DIST)/host/bin/mar$(HOST_BIN_SUFFIX)
67 MBSDIFF_BIN = $(DIST)/host/bin/mbsdiff$(HOST_BIN_SUFFIX)
69 full-update:: complete-patch
71 complete-patch::
72 mkdir -p $(STAGE_DIR)
73 MAR=$(MAR_BIN) \
74 $(srcdir)/make_full_update.sh \
75 "$(STAGE_DIR)/$(PKG_BASENAME).complete.mar" \
76 "$(PACKAGE_DIR)"
78 partial-patch::
79 mkdir -p $(STAGE_DIR)
80 MAR=$(MAR_BIN) \
81 MBSDIFF=$(MBSDIFF_BIN) \
82 $(srcdir)/make_incremental_update.sh \
83 "$(STAGE_DIR)/$(PKG_BASENAME).partial.$(SRC_BUILD_ID)-$(DST_BUILD_ID).mar" \
84 "$(SRC_BUILD)" \
85 "$(DST_BUILD)"
87 include $(topsrcdir)/config/rules.mk