Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / tools / update-packaging / Makefile.in
blob69821698a6246902c9877dd8af3234102ad01c19
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 # input location for the build, usually $(DIST)
50 # set this to $(DIST)/l10n-stage per override for L10n builds
51 PACKAGE_BASE_DIR = $(DIST)
53 # Default output location for update archive
54 STAGE_DIR = $(DIST)/$(PKG_UPDATE_PATH)
56 ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
57 ifdef UNIVERSAL_BINARY
58 ifneq (,$(filter %/l10n-stage,$(PACKAGE_BASE_DIR)))
59 PACKAGE_DIR = $(PACKAGE_BASE_DIR)/$(MOZ_PKG_APPNAME)/$(MOZ_APP_DISPLAYNAME).app
60 else
61 PACKAGE_DIR = $(PACKAGE_BASE_DIR)/universal/$(MOZ_PKG_APPNAME)/$(MOZ_APP_DISPLAYNAME).app
62 endif
63 else
64 PACKAGE_DIR = $(PACKAGE_BASE_DIR)/$(MOZ_PKG_APPNAME)/$(MOZ_APP_DISPLAYNAME).app
65 endif
66 else
67 PACKAGE_DIR = $(PACKAGE_BASE_DIR)/$(MOZ_PKG_APPNAME)
68 endif
70 MAR_BIN = $(DIST)/host/bin/mar$(HOST_BIN_SUFFIX)
71 MBSDIFF_BIN = $(DIST)/host/bin/mbsdiff$(HOST_BIN_SUFFIX)
73 full-update:: complete-patch
75 complete-patch::
76 mkdir -p $(STAGE_DIR)
77 MAR=$(MAR_BIN) \
78 $(srcdir)/make_full_update.sh \
79 "$(STAGE_DIR)/$(PKG_UPDATE_BASENAME).complete.mar" \
80 "$(PACKAGE_DIR)"
82 partial-patch::
83 mkdir -p $(STAGE_DIR)
84 MAR=$(MAR_BIN) \
85 MBSDIFF=$(MBSDIFF_BIN) \
86 $(srcdir)/make_incremental_update.sh \
87 "$(STAGE_DIR)/$(PKG_UPDATE_BASENAME).partial.$(SRC_BUILD_ID)-$(DST_BUILD_ID).mar" \
88 "$(SRC_BUILD)" \
89 "$(DST_BUILD)"
91 include $(topsrcdir)/config/rules.mk