2008-04-18 13:41:49 +00: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.
#
# The Initial Developer of the Original Code is
# the Mozilla Foundation <http://www.mozilla.org/>.
# Portions created by the Initial Developer are Copyright (C) 2007
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Mark Finkle <mfinkle@mozilla.com>
2009-09-12 00:34:26 +00:00
# Ben Combee <bcombee@mozilla.com>
2008-04-18 13:41:49 +00: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 *****
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
i n c l u d e $( DEPTH ) / c o n f i g / a u t o c o n f . m k
2010-12-15 20:10:08 +00:00
# overwrite mobile-l10n.js with a matchOS=true one for multi-locale builds
i f e q ( $( AB_CD ) , m u l t i )
PREF_JS_EXPORTS = $( srcdir) /mobile-l10n.js
e n d i f
2010-10-19 22:28:10 +00:00
2010-12-15 20:10:08 +00:00
i n c l u d e $( topsrcdir ) / c o n f i g / r u l e s . m k
2008-07-25 23:07:50 +00:00
2010-12-15 20:10:08 +00:00
MOZ_PKG_REMOVALS = $( srcdir) /removed-files.in
2010-10-19 22:28:10 +00:00
2010-12-15 20:10:08 +00:00
i f d e f M O Z _ E N A B L E _ L I B X U L
MOZ_PKG_MANIFEST_P = $( srcdir) /package-manifest.in
e l s e
d e f i n e m e s s a g e
Y o u n e e d t o b u i l d w i t h - - e n a b l e - l i b x u l ( t h e d e f a u l t , u n l e s s y o u s p e c i f y
- - d i s a b l e - l i b x u l o r - - e n a b l e - s h a r e d o r - - e n a b l e - d e b u g ) t o p a c k a g e a b u i l d .
e n d e f
default libs installer ::
$( error $( message) )
e n d i f
MOZ_NONLOCALIZED_PKG_LIST = \
xpcom \
browser \
mobile \
2008-04-18 13:41:49 +00:00
$( NULL)
2010-12-15 20:10:19 +00:00
MOZ_LOCALIZED_PKG_LIST = $( AB_CD) multilocale
2010-12-15 20:10:08 +00:00
DEFINES += \
-DAB_CD= $( AB_CD) \
-DMOZ_APP_NAME= $( MOZ_APP_NAME) \
-DPREF_DIR= $( PREF_DIR) \
2010-10-20 03:33:01 +00:00
$( NULL)
2010-10-19 22:28:10 +00:00
2010-12-15 20:10:08 +00:00
i f e q ( $( MOZ_CHROME_FILE_FORMAT ) , j a r )
2010-12-15 20:10:19 +00:00
JAREXT = .jar
2010-12-15 20:10:08 +00:00
e l s e
2010-12-15 20:10:19 +00:00
JAREXT =
2010-10-20 03:33:01 +00:00
e n d i f
2010-12-15 20:10:19 +00:00
DEFINES += -DJAREXT= $( JAREXT)
2010-10-19 22:28:10 +00:00
2010-12-15 20:10:08 +00:00
i n c l u d e $( topsrcdir ) / i p c / a p p / d e f s . m k
DEFINES += -DMOZ_CHILD_PROCESS_NAME= $( MOZ_CHILD_PROCESS_NAME)
2008-04-18 13:41:49 +00:00
2010-12-15 20:10:19 +00:00
i f n e q ( , $( filter mac cocoa ,$ ( MOZ_WIDGET_TOOLKIT ) ) )
_BINPATH = /$( _APPNAME) /Contents/Resources
e n d i f
i f e q ( b u n d l e , $( MOZ_FS_LAYOUT ) )
BINPATH = $( _BINPATH)
DEFINES += -DAPPNAME= $( _APPNAME)
e l s e
# Every other platform just winds up in dist/bin
BINPATH = bin
e n d i f
DEFINES += -DBINPATH= $( BINPATH)
2010-12-15 20:10:08 +00:00
i f d e f M O Z _ P K G _ M A N I F E S T _ P
MOZ_PKG_MANIFEST = package-manifest
2010-12-15 20:10:19 +00:00
$(MOZ_PKG_MANIFEST) : $( MOZ_PKG_MANIFEST_P ) FORCE
2010-12-15 20:10:08 +00:00
$( PYTHON) $( topsrcdir) /config/Preprocessor.py $( DEFINES) $( ACDEFINES) $< > $@
2010-12-15 20:10:19 +00:00
i f d e f M O Z _ C H R O M E _ M U L T I L O C A L E
printf "\n[multilocale]\n" >> $@
for LOCALE in $( MOZ_CHROME_MULTILOCALE) ; \
do \
printf " $( BINPATH) /chrome/ $$ LOCALE $( JAREXT) \n " >> $@ ; \
printf " $( BINPATH) /chrome/ $$ LOCALE.manifest\n " >> $@ ; \
done
2010-12-15 20:10:08 +00:00
e n d i f
2010-10-20 03:33:01 +00:00
2010-12-15 20:10:19 +00:00
GARBAGE += $( MOZ_PKG_MANIFEST)
2008-04-18 13:41:49 +00:00
e n d i f
2009-09-03 01:53:12 +00:00
i f n e q ( , $( filter mac cocoa ,$ ( MOZ_WIDGET_TOOLKIT ) ) )
2010-02-10 19:58:37 +00:00
PACKAGE_XULRUNNER =
UNPACKAGE =
2009-09-03 01:53:12 +00:00
e l s e
2009-04-08 19:45:14 +00:00
PACKAGE_XULRUNNER = package-xulrunner
2009-08-13 17:45:53 +00:00
UNPACKAGE = $( LIBXUL_DIST) /xulrunner*$( PKG_SUFFIX)
2009-09-03 01:53:12 +00:00
e n d i f
2009-04-08 19:45:14 +00:00
2010-11-01 04:52:18 +00:00
libs ::
find $( DIST) /bin/chrome -type f -name *.dtd -exec sed -i '/<!--.*-->/d' { } \;
find $( DIST) /bin/chrome -type f -name *.dtd -exec sed -i '/<!--/,/-->/d' { } \;
find $( DIST) /bin/chrome -type f -name *.properties -exec sed -i '/^#/d' { } \;
2008-04-18 13:41:49 +00:00
i n c l u d e $( topsrcdir ) / t o o l k i t / m o z a p p s / i n s t a l l e r / p a c k a g e r . m k
2008-05-01 18:24:04 +00:00
2010-03-07 02:31:54 +00:00
i f d e f L I B X U L _ S D K
MOZ_GRE_PKG_DIR = $( MOZ_PKG_DIR) /xulrunner
e l s e
MOZ_GRE_PKG_DIR = $( MOZ_PKG_DIR)
e n d i f
2009-04-08 19:45:14 +00:00
package-xulrunner :
2010-01-29 16:15:37 +00:00
i f d e f L I B X U L _ S D K
2009-04-08 19:45:14 +00:00
i f n d e f S Y S T E M _ L I B X U L
@echo "Packaging xulrunner..."
2009-08-13 17:45:53 +00:00
@rm -rf $( LIBXUL_DIST) /xulrunner*
2009-04-08 19:45:14 +00:00
@$( MAKE) -C $( LIBXUL_DIST) /.. package || echo "Perhaps you're trying to package a prebuilt SDK. See 'https://wiki.mozilla.org/Mobile/Build/Fennec#Build' for more information."
2009-08-13 17:45:53 +00:00
@cd $( DIST) /$( MOZ_PKG_DIR) ; $( UNMAKE_PACKAGE)
2010-02-10 19:58:37 +00:00
@echo "Removing unpackaged files... (the ones xulrunner/installer keeps)"
@cd $( DIST) /$( MOZ_PKG_DIR) /xulrunner; rm -rf $( NO_PKG_FILES)
2009-04-08 19:45:14 +00:00
e l s e
@echo "Using system xulrunner..."
e n d i f
2010-01-29 16:15:37 +00:00
e n d i f
2009-04-08 19:45:14 +00:00
2008-05-01 18:24:04 +00:00
i f e q ( $( OS_TARGET ) , L i n u x )
2010-12-15 20:10:08 +00:00
GRE_MILESTONE = $( shell $( PYTHON) $( topsrcdir) /config/printconfigsetting.py $( LIBXUL_DIST) /bin/platform.ini Build Milestone)
GRE_BUILDID = $( shell $( PYTHON) $( topsrcdir) /config/printconfigsetting.py $( LIBXUL_DIST) /bin/platform.ini Build BuildID)
ABS_OBJDIR = ` cd $( DEPTH) ; pwd `
ABS_TOPSRCDIR = $( shell cd $( topsrcdir) ; pwd )
BASE64_ICON = dist/branding/fennec_maemo_icon26.txt
MOZ_DEB_TIMESTAMP = " $( shell date +"%a, %d %b %Y %T %z" ) "
DEB_PKG_VERSION = $( shell echo $( MOZ_APP_VERSION) | $( PERL) -pe 's/pre/~$(GRE_BUILDID)/; s/^([0-9.]+)([a-z][0-9]+)/$$1~$$2/' )
DEB_BUILD_ARCH = $( shell dpkg-architecture -qDEB_BUILD_ARCH)
# package name should match mobile/installer/debian/changelog.in
DEB_PKG_NAME = $( MOZ_PKG_APPNAME) _$( DEB_PKG_VERSION) _$( DEB_BUILD_ARCH) .deb
DEFINES += \
-DGRE_MILESTONE= $( GRE_MILESTONE) \
-DGRE_BUILDID= $( GRE_BUILDID) \
-Dinstalldir= $( installdir) \
-DMOZ_APP_DISPLAYNAME= $( MOZ_APP_DISPLAYNAME) \
-DMOZ_APP_VERSION= $( MOZ_APP_VERSION) \
-DABS_OBJDIR= $( ABS_OBJDIR) \
-DBASE64_ICON= $( BASE64_ICON) \
-DMOZ_DEB_TIMESTAMP= $( MOZ_DEB_TIMESTAMP) \
-DDEB_PKG_VERSION= $( DEB_PKG_VERSION) \
$( NULL)
DEBDESTDIR = debian/$( MOZ_APP_NAME)
2010-01-06 18:37:59 +00:00
PP_DEB_FILES = debian/control \
debian/changelog \
debian/$( MOZ_APP_NAME) .desktop \
debian/$( MOZ_APP_NAME) .links \
debian/$( MOZ_APP_NAME) .service \
debian/compat \
debian/files \
debian/menu \
debian/fennec.preinst \
debian/fennec.prerm \
debian/fennec.postinst \
$( NULL)
$(PP_DEB_FILES) :
@$( EXIT_ON_ERROR) \
for f in $( PP_DEB_FILES) ; do \
src = $( srcdir) /debian/` basename $$ f` .in; \
echo $$ src ">" $$ f ; \
$( RM) -f $$ f; \
mkdir -p debian; \
$( PYTHON) $( topsrcdir) /config/Preprocessor.py \
$( AUTOMATION_PPARGS) $( DEFINES) $( ACDEFINES) $$ src > $$ f; \
done
2010-02-10 19:58:37 +00:00
$(MOZILLA_VERSION).$(MOZ_APP_NAME).conf : $( topsrcdir ) /config /milestone .txt Makefile
printf "[%s]\nGRE_PATH=%s\nxulrunner=true\nabi=%s" \
$( MOZILLA_VERSION) $( installdir) /xulrunner $( TARGET_XPCOM_ABI) > $@
# to register xulrunner per-user, override this with $HOME/.gre.d
regdir = /etc/gre.d
2010-01-06 18:37:59 +00:00
deb : $( PP_DEB_FILES ) $( DIST ) /branding /$( MOZ_APP_NAME ) _scalable .png \
$( DIST) /branding/$( MOZ_APP_NAME) _26x26.png \
2010-02-10 19:58:37 +00:00
$( DIST) /branding/$( MOZ_APP_NAME) _40x40.png \
$( MOZILLA_VERSION) .$( MOZ_APP_NAME) .conf
2009-10-27 19:07:11 +00:00
rm -rf $( DEBDESTDIR) /$( installdir) /*
$( NSINSTALL) -D $( DEBDESTDIR) /$( installdir)
2009-12-10 19:39:09 +00:00
cp -pRL $( DIST) /$( MOZ_APP_NAME) /* $( DEBDESTDIR) /$( installdir)
2008-05-01 19:54:04 +00:00
$( NSINSTALL) debian/$( MOZ_APP_NAME) .desktop $( DEBDESTDIR) /usr/share/applications/hildon/
2008-05-01 18:24:04 +00:00
$( NSINSTALL) -D $( DEBDESTDIR) /usr/share/dbus-1/services/
cp debian/$( MOZ_APP_NAME) .service $( DEBDESTDIR) /usr/share/dbus-1/services/org.mozilla.$( MOZ_APP_NAME) .service
2008-09-04 14:28:00 +00:00
$( NSINSTALL) -D $( DEBDESTDIR) /usr/share/icons/hicolor/scalable/hildon/
2009-10-28 05:43:32 +00:00
cp $( DIST) /branding/$( MOZ_APP_NAME) _scalable.png $( DEBDESTDIR) /usr/share/icons/hicolor/scalable/hildon/$( MOZ_APP_NAME) .png
2009-09-12 00:34:26 +00:00
$( NSINSTALL) -D $( DEBDESTDIR) /usr/share/icons/hicolor/26x26/hildon/
2009-10-28 05:43:32 +00:00
cp $( DIST) /branding/$( MOZ_APP_NAME) _26x26.png $( DEBDESTDIR) /usr/share/icons/hicolor/26x26/hildon/$( MOZ_APP_NAME) .png
2009-09-12 00:34:26 +00:00
$( NSINSTALL) -D $( DEBDESTDIR) /usr/share/icons/hicolor/40x40/hildon/
2009-10-28 05:43:32 +00:00
cp $( DIST) /branding/$( MOZ_APP_NAME) _40x40.png $( DEBDESTDIR) /usr/share/icons/hicolor/40x40/hildon/$( MOZ_APP_NAME) .png
2010-02-10 19:58:37 +00:00
$( NSINSTALL) -D $( DEBDESTDIR) $( regdir)
$( SYSINSTALL) $( MOZILLA_VERSION) .$( MOZ_APP_NAME) .conf $( DEBDESTDIR) $( regdir) /
2008-08-28 15:50:32 +00:00
dh_link; fakeroot dh_fixperms; fakeroot dh_installdeb; dh_shlibdeps; fakeroot dh_gencontrol; fakeroot dh_md5sums; dh_builddeb
2010-02-23 20:59:16 +00:00
echo $( DEB_PKG_NAME) > $( DIST) /deb_name.txt
2009-04-08 03:29:11 +00:00
installer : deb
@echo Installer DEB created!
2010-10-08 17:54:00 +00:00
# relative to $(DIST)
UPLOAD_EXTRA_FILES += ../mobile/$( DEB_PKG_NAME)
2008-05-01 18:24:04 +00:00
e n d i f
2009-12-12 01:03:19 +00:00
i f e q ( $( OS_ARCH ) , W I N C E )
2009-04-08 03:29:11 +00:00
VSINSTALLDIR ?= $( error VSINSTALLDIR not set, must be set to the Visual Studio install directory)
2009-04-08 19:45:14 +00:00
UNPACKAGE = $( LIBXUL_DIST) /xulrunner*$( PKG_SUFFIX)
2009-04-10 01:42:28 +00:00
2010-02-09 17:46:29 +00:00
cab : stage -package package -xulrunner
cd $( DIST) && $( PYTHON) $( ABS_TOPSRCDIR) /build/package/wince/make_wince_cab.py $( CABARGS) " $( VSINSTALLDIR) /SmartDevices/SDK/SDKTools/cabwiz.exe " " $( MOZ_PKG_DIR) " " $( MOZ_APP_DISPLAYNAME) " " $( PKG_PATH) $( PKG_BASENAME) .cab " && echo " Installer $( PKG_PATH) $( PKG_BASENAME) .cab created! "
installer : 7zip -installer zip
zip :
cd $( DIST) && $( ZIP) -r9D $( PACKAGE) $( MOZ_PKG_DIR)
7zip-installer : stage -package package -xulrunner
2009-04-08 03:29:11 +00:00
$( NSINSTALL) -D $( DIST) /$( PKG_PATH)
2010-02-09 17:46:29 +00:00
cd $( DIST) && $( PYTHON) $( ABS_TOPSRCDIR) /build/package/wince/make_wince_cab.py -setupdll -s " $( VSINSTALLDIR) /SmartDevices/SDK/SDKTools/cabwiz.exe " " $( MOZ_PKG_DIR) " " $( MOZ_APP_DISPLAYNAME) " " $( MOZ_PKG_DIR) /setup.cab "
2009-12-06 00:22:26 +00:00
$( NSINSTALL) $( DIST) /$( MOZ_PKG_DIR) /setup.ini $( DIST)
2010-03-07 02:31:54 +00:00
i f d e f L I B X U L _ S D K
mv $( DIST) /$( MOZ_GRE_PKG_DIR) /uninstall.exe $( DIST) /$( MOZ_PKG_DIR) /
e n d i f
cd $( DIST) && \
7z a $( PKG_PATH) $( PKG_BASENAME) .7z $( MOZ_PKG_DIR) setup.ini \
-x!$( MOZ_GRE_PKG_DIR) /xulrunner-stub-installer.sfx \
-x!$( MOZ_PKG_DIR) /setup.ini && \
cat $( MOZ_GRE_PKG_DIR) /xulrunner-stub-installer.sfx \
$( PKG_PATH) $( PKG_BASENAME) .7z>$( PKG_PATH) $( PKG_BASENAME) .exe && \
rm $( PKG_PATH) $( PKG_BASENAME) .7z && \
rm setup.ini
2009-04-08 03:29:11 +00:00
e n d i f