2005-06-08 18:04:25 +00:00
|
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2003-07-31 02:21:25 +00:00
|
|
|
|
2005-07-28 19:48:12 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2008-10-20 19:57:47 +00:00
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
vpath crashreporter%.ini $(LOCALE_MERGEDIR)/browser/crashreporter
|
|
|
|
endif
|
|
|
|
vpath crashreporter%.ini $(LOCALE_SRCDIR)/crashreporter
|
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
vpath crashreporter%.ini @srcdir@/en-US/crashreporter
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2006-06-28 23:26:14 +00:00
|
|
|
SUBMAKEFILES += \
|
|
|
|
$(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/Makefile \
|
|
|
|
$(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/locales/Makefile \
|
|
|
|
$(NULL)
|
2005-07-29 16:38:23 +00:00
|
|
|
|
2005-05-09 14:34:08 +00:00
|
|
|
# This makefile uses variable overrides from the libs-% target to
|
|
|
|
# build non-default locales to non-default dist/ locations. Be aware!
|
2003-07-31 02:21:25 +00:00
|
|
|
|
2009-03-11 22:39:24 +00:00
|
|
|
PWD := $(CURDIR)
|
2007-05-02 14:18:20 +00:00
|
|
|
|
2008-12-24 14:08:08 +00:00
|
|
|
# These are defaulted to be compatible with the files the wget-en-US target
|
|
|
|
# pulls. You may override them if you provide your own files. You _must_
|
|
|
|
# override them when MOZ_PKG_PRETTYNAMES is defined - the defaults will not
|
2008-11-14 16:26:53 +00:00
|
|
|
# work in that case.
|
2015-12-30 00:33:50 +00:00
|
|
|
ZIP_IN ?= $(ABS_DIST)/$(PACKAGE)
|
|
|
|
WIN32_INSTALLER_IN ?= $(ABS_DIST)/$(PKG_INST_PATH)$(PKG_INST_BASENAME).exe
|
2009-10-05 21:04:18 +00:00
|
|
|
RETRIEVE_WINDOWS_INSTALLER = 1
|
2008-11-14 16:26:53 +00:00
|
|
|
|
2009-06-15 14:17:19 +00:00
|
|
|
MOZ_LANGPACK_EID=langpack-$(AB_CD)@firefox.mozilla.org
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2015-01-20 18:07:03 +00:00
|
|
|
L10N_PREF_JS_EXPORTS = $(call MERGE_FILE,firefox-l10n.js)
|
|
|
|
L10N_PREF_JS_EXPORTS_PATH = $(FINAL_TARGET)/$(PREF_DIR)
|
|
|
|
L10N_PREF_JS_EXPORTS_FLAGS = $(PREF_PPFLAGS) --silence-missing-directive-warnings
|
|
|
|
PP_TARGETS += L10N_PREF_JS_EXPORTS
|
2004-07-12 17:15:10 +00:00
|
|
|
|
2009-08-14 11:06:15 +00:00
|
|
|
ifneq (,$(filter cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
2015-12-30 00:33:50 +00:00
|
|
|
MOZ_PKG_MAC_DSSTORE=$(ABS_DIST)/branding/dsstore
|
|
|
|
MOZ_PKG_MAC_BACKGROUND=$(ABS_DIST)/branding/background.png
|
|
|
|
MOZ_PKG_MAC_ICON=$(ABS_DIST)/branding/disk.icns
|
2013-12-02 21:34:21 +00:00
|
|
|
MOZ_PKG_MAC_EXTRA=--symlink '/Applications:/ '
|
2009-08-14 11:06:15 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
|
|
|
UNINSTALLER_PACKAGE_HOOK = $(RM) -r $(STAGEDIST)/uninstall; \
|
|
|
|
$(NSINSTALL) -D $(STAGEDIST)/uninstall; \
|
|
|
|
cp ../installer/windows/l10ngen/helper.exe $(STAGEDIST)/uninstall; \
|
2015-12-30 00:33:50 +00:00
|
|
|
$(RM) $(ABS_DIST)/l10n-stage/setup.exe; \
|
|
|
|
cp ../installer/windows/l10ngen/setup.exe $(ABS_DIST)/l10n-stage; \
|
2012-12-11 00:23:09 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2015-12-30 00:33:50 +00:00
|
|
|
STUB_HOOK = $(NSINSTALL) -D '$(ABS_DIST)/$(PKG_INST_PATH)'; \
|
|
|
|
$(RM) '$(ABS_DIST)/$(PKG_INST_PATH)$(PKG_STUB_BASENAME).exe'; \
|
|
|
|
cp ../installer/windows/l10ngen/stub.exe '$(ABS_DIST)/$(PKG_INST_PATH)$(PKG_STUB_BASENAME).exe'; \
|
|
|
|
chmod 0755 '$(ABS_DIST)/$(PKG_INST_PATH)$(PKG_STUB_BASENAME).exe'; \
|
2009-08-14 11:06:15 +00:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2014-10-28 01:43:51 +00:00
|
|
|
SEARCHPLUGINS_NAMES = $(shell cat $(call MERGE_FILE,/searchplugins/list.txt)) ddg
|
2016-04-18 14:22:40 +00:00
|
|
|
ifeq (,$(filter-out en-US ru be kk tr uk zh-CN zh-TW,$(AB_CD)))
|
|
|
|
SEARCHPLUGINS_NAMES := $(subst google,google:hidden,$(SEARCHPLUGINS_NAMES))
|
|
|
|
SEARCHPLUGINS_NAMES += google-nocodes
|
|
|
|
endif
|
2015-08-15 09:08:58 +00:00
|
|
|
SEARCHPLUGINS_FILENAMES = $(subst :hidden,,$(SEARCHPLUGINS_NAMES))
|
2015-05-19 13:57:08 +00:00
|
|
|
SEARCHPLUGINS_PATH := .deps/generated_$(AB_CD)
|
2014-10-08 04:41:39 +00:00
|
|
|
SEARCHPLUGINS_TARGET := libs searchplugins
|
2015-12-17 16:40:07 +00:00
|
|
|
SEARCHPLUGINS := $(foreach plugin,$(addsuffix .xml,$(SEARCHPLUGINS_FILENAMES)),$(or $(wildcard $(call EN_US_OR_L10N_FILE,searchplugins/$(plugin))),$(warning Missing searchplugin: $(plugin))))
|
2014-12-10 19:56:38 +00:00
|
|
|
# Some locale-specific search plugins may have preprocessor directives, but the
|
|
|
|
# default en-US ones do not.
|
|
|
|
SEARCHPLUGINS_FLAGS := --silence-missing-directive-warnings
|
2013-02-12 20:51:23 +00:00
|
|
|
PP_TARGETS += SEARCHPLUGINS
|
|
|
|
|
2015-05-19 13:57:08 +00:00
|
|
|
list-txt = $(SEARCHPLUGINS_PATH)/list.txt
|
|
|
|
GARBAGE += $(list-txt)
|
|
|
|
|
2016-01-19 23:01:42 +00:00
|
|
|
libs:: searchplugins
|
2015-05-19 13:57:08 +00:00
|
|
|
|
2013-02-12 20:51:23 +00:00
|
|
|
# Required for l10n.mk - defines a list of app sub dirs that should
|
|
|
|
# be included in langpack xpis.
|
|
|
|
DIST_SUBDIRS = $(DIST_SUBDIR)
|
|
|
|
|
2004-07-12 17:15:10 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2009-06-15 14:17:19 +00:00
|
|
|
include $(topsrcdir)/toolkit/locales/l10n.mk
|
|
|
|
|
2015-05-19 13:57:08 +00:00
|
|
|
$(list-txt): $(call mkdir_deps,$(SEARCHPLUGINS_PATH)) $(if $(IS_LANGUAGE_REPACK),FORCE)
|
|
|
|
$(RM) $(list-txt)
|
|
|
|
$(foreach plugin,$(SEARCHPLUGINS_NAMES),printf '$(plugin)\n' >> $(list-txt);)
|
|
|
|
searchplugins:: $(list-txt)
|
|
|
|
|
2009-06-26 19:08:56 +00:00
|
|
|
$(STAGEDIST): $(DIST)/branding
|
|
|
|
|
|
|
|
$(DIST)/branding:
|
|
|
|
$(NSINSTALL) -D $@
|
|
|
|
|
2015-12-25 01:27:29 +00:00
|
|
|
DEFINES += -DBOOKMARKS_INCLUDE_DIR=$(dir $(call MERGE_FILE,profile/bookmarks.inc))
|
2008-12-11 11:58:41 +00:00
|
|
|
|
2005-04-20 23:10:56 +00:00
|
|
|
libs-%:
|
2008-10-20 19:57:47 +00:00
|
|
|
$(NSINSTALL) -D $(DIST)/install
|
2015-11-05 05:45:51 +00:00
|
|
|
@$(MAKE) -C ../../toolkit/locales libs-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
|
2012-11-13 07:17:14 +00:00
|
|
|
@$(MAKE) -C ../../services/sync/locales AB_CD=$* XPI_NAME=locale-$*
|
|
|
|
@$(MAKE) -C ../../extensions/spellcheck/locales AB_CD=$* XPI_NAME=locale-$*
|
2015-12-29 23:40:52 +00:00
|
|
|
@$(MAKE) -C ../extensions/pocket/locales AB_CD=$* XPI_NAME=locale-$*
|
2016-02-09 10:16:24 +00:00
|
|
|
@$(MAKE) -C ../extensions/loop/chrome/locale AB_CD=$* XPI_NAME=locale-$*
|
2012-11-13 07:17:14 +00:00
|
|
|
@$(MAKE) -C ../../intl/locales AB_CD=$* XPI_NAME=locale-$*
|
2015-11-05 05:45:51 +00:00
|
|
|
@$(MAKE) -C ../../devtools/client/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
|
2015-05-19 13:57:08 +00:00
|
|
|
@$(MAKE) -B searchplugins AB_CD=$* XPI_NAME=locale-$*
|
2012-11-13 07:17:14 +00:00
|
|
|
@$(MAKE) libs AB_CD=$* XPI_NAME=locale-$* PREF_DIR=$(PREF_DIR)
|
|
|
|
@$(MAKE) -C $(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/locales AB_CD=$* XPI_NAME=locale-$*
|
2005-04-20 23:10:56 +00:00
|
|
|
|
2015-12-30 00:33:50 +00:00
|
|
|
repackage-win32-installer: WIN32_INSTALLER_OUT=$(ABS_DIST)/$(PKG_INST_PATH)$(PKG_INST_BASENAME).exe
|
2012-08-07 19:08:48 +00:00
|
|
|
repackage-win32-installer: $(call ESCAPE_WILDCARD,$(WIN32_INSTALLER_IN)) $(SUBMAKEFILES) libs-$(AB_CD)
|
2013-12-02 21:34:21 +00:00
|
|
|
@echo 'Repackaging $(WIN32_INSTALLER_IN) into $(WIN32_INSTALLER_OUT).'
|
2006-06-28 21:08:52 +00:00
|
|
|
$(MAKE) -C $(DEPTH)/$(MOZ_BRANDING_DIRECTORY) export
|
2006-06-28 16:58:07 +00:00
|
|
|
$(MAKE) -C ../installer/windows CONFIG_DIR=l10ngen l10ngen/setup.exe l10ngen/7zSD.sfx
|
2010-08-13 04:36:16 +00:00
|
|
|
$(MAKE) repackage-zip \
|
|
|
|
AB_CD=$(AB_CD) \
|
|
|
|
MOZ_PKG_FORMAT=SFX7Z \
|
2013-12-02 21:34:21 +00:00
|
|
|
ZIP_IN='$(WIN32_INSTALLER_IN)' \
|
|
|
|
ZIP_OUT='$(WIN32_INSTALLER_OUT)' \
|
|
|
|
SFX_HEADER='$(PWD)/../installer/windows/l10ngen/7zSD.sfx \
|
|
|
|
$(topsrcdir)/browser/installer/windows/app.tag'
|
2005-04-20 23:10:56 +00:00
|
|
|
|
2008-10-20 19:57:47 +00:00
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
2012-08-07 19:08:48 +00:00
|
|
|
repackage-win32-installer-%: $(STAGEDIST)
|
2013-12-02 21:34:21 +00:00
|
|
|
@$(MAKE) repackage-win32-installer AB_CD=$* WIN32_INSTALLER_IN='$(WIN32_INSTALLER_IN)'
|
2012-08-07 19:08:48 +00:00
|
|
|
|
|
|
|
repackage-zip-%: repackage-win32-installer-%
|
2008-10-20 19:57:47 +00:00
|
|
|
else
|
|
|
|
repackage-win32-installer-%: ;
|
|
|
|
endif
|
2004-11-30 08:23:02 +00:00
|
|
|
|
|
|
|
|
2008-10-20 19:57:47 +00:00
|
|
|
clobber-zip:
|
|
|
|
$(RM) $(STAGEDIST)/chrome/$(AB_CD).jar \
|
|
|
|
$(STAGEDIST)/chrome/$(AB_CD).manifest \
|
2012-04-19 07:39:52 +00:00
|
|
|
$(STAGEDIST)/$(PREF_DIR)/firefox-l10n.js
|
2015-05-19 13:57:08 +00:00
|
|
|
$(RM) -rf $(STAGEDIST)/dictionaries \
|
2011-05-04 11:14:51 +00:00
|
|
|
$(STAGEDIST)/hyphenation \
|
2005-05-05 12:38:27 +00:00
|
|
|
$(STAGEDIST)/defaults/profile \
|
2016-03-07 21:32:26 +00:00
|
|
|
$(STAGEDIST)/chrome/$(AB_CD)
|
2008-10-20 19:57:47 +00:00
|
|
|
|
2005-04-20 23:10:56 +00:00
|
|
|
|
2009-04-07 17:21:57 +00:00
|
|
|
langpack: langpack-$(AB_CD)
|
|
|
|
|
2005-04-20 23:10:56 +00:00
|
|
|
# This is a generic target that will make a langpack, repack ZIP (+tarball)
|
|
|
|
# builds, and repack an installer if applicable. It is called from the
|
|
|
|
# tinderbox scripts. Alter it with caution.
|
|
|
|
|
2008-10-20 19:57:47 +00:00
|
|
|
installers-%: clobber-% langpack-% repackage-win32-installer-% repackage-zip-%
|
2013-12-02 21:34:21 +00:00
|
|
|
@echo 'repackaging done'
|
2005-06-08 18:04:25 +00:00
|
|
|
|
|
|
|
ifdef MOZ_UPDATER
|
2012-09-05 18:43:23 +00:00
|
|
|
# Note that we want updater.ini to be in the top directory, not the browser/
|
|
|
|
# subdirectory, because that's where the updater is installed and runs.
|
2013-03-11 03:03:28 +00:00
|
|
|
libs:: $(call MERGE_FILE,updater/updater.ini) $(call mkdir_deps,$(DIST)/bin)
|
2005-06-08 18:04:25 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2009-05-21 18:02:08 +00:00
|
|
|
cat $< $(srcdir)/../installer/windows/nsis/updater_append.ini | \
|
2013-12-02 21:34:21 +00:00
|
|
|
sed -e 's/^InfoText=/Info=/' -e 's/^TitleText=/Title=/' | \
|
|
|
|
sed -e 's/%MOZ_APP_DISPLAYNAME%/$(MOZ_APP_DISPLAYNAME)/' > \
|
2013-08-13 15:15:42 +00:00
|
|
|
$(FINAL_TARGET)/../updater.ini
|
2005-06-08 18:04:25 +00:00
|
|
|
else
|
2009-05-22 21:55:55 +00:00
|
|
|
cat $< | \
|
2013-12-02 21:34:21 +00:00
|
|
|
sed -e 's/^InfoText=/Info=/' -e 's/^TitleText=/Title=/' | \
|
|
|
|
sed -e 's/%MOZ_APP_DISPLAYNAME%/$(MOZ_APP_DISPLAYNAME)/' > \
|
2013-08-13 15:15:42 +00:00
|
|
|
$(FINAL_TARGET)/../updater.ini
|
2005-06-08 18:04:25 +00:00
|
|
|
endif
|
|
|
|
endif
|
2008-01-23 00:03:58 +00:00
|
|
|
|
|
|
|
ifdef MOZ_CRASHREPORTER
|
2008-10-20 19:57:47 +00:00
|
|
|
libs:: crashreporter-override.ini
|
2008-01-23 00:03:58 +00:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)
|
|
|
|
endif
|
2008-08-27 15:02:33 +00:00
|
|
|
|
2008-10-20 19:57:47 +00:00
|
|
|
ident:
|
2013-12-02 21:34:21 +00:00
|
|
|
@printf 'fx_revision '
|
2009-06-25 16:31:06 +00:00
|
|
|
@$(PYTHON) $(topsrcdir)/config/printconfigsetting.py \
|
|
|
|
$(STAGEDIST)/application.ini App SourceStamp
|
2013-12-02 21:34:21 +00:00
|
|
|
@printf 'buildid '
|
2009-06-25 16:31:06 +00:00
|
|
|
@$(PYTHON) $(topsrcdir)/config/printconfigsetting.py \
|
|
|
|
$(STAGEDIST)/application.ini App BuildID
|
2008-10-20 19:57:47 +00:00
|
|
|
|
|
|
|
merge-%:
|
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
$(RM) -rf $(LOCALE_MERGEDIR)
|
2016-01-15 12:51:54 +00:00
|
|
|
MACOSX_DEPLOYMENT_TARGET= compare-locales -m $(LOCALE_MERGEDIR) $(srcdir)/l10n.ini $(L10NBASEDIR) $*
|
2008-10-20 19:57:47 +00:00
|
|
|
endif
|
|
|
|
@echo
|
2011-03-18 17:29:56 +00:00
|
|
|
|
|
|
|
# test target, depends on make package
|
|
|
|
# try to repack x-test, with just toolkit/defines.inc being there
|
2012-09-20 17:36:08 +00:00
|
|
|
l10n-check:: INNER_UNMAKE_PACKAGE=true
|
2011-03-18 17:29:56 +00:00
|
|
|
l10n-check::
|
|
|
|
$(RM) -rf x-test
|
|
|
|
$(NSINSTALL) -D x-test/toolkit
|
2013-12-02 21:34:21 +00:00
|
|
|
echo '#define MOZ_LANG_TITLE Just testing' > x-test/toolkit/defines.inc
|
2015-11-26 10:19:18 +00:00
|
|
|
@# ZIP_IN='$(ZIP_IN)' will pass down the *current* value of ZIP_IN, based
|
|
|
|
@# on MOZ_SIMPLE_PACKAGE_NAME not being reset, overwriting the value it
|
|
|
|
@# would get with MOZ_SIMPLE_PACKAGE_NAME reset.
|
2016-02-02 14:04:40 +00:00
|
|
|
$(MAKE) installers-x-test L10NBASEDIR='$(PWD)' LOCALE_MERGEDIR='$(PWD)/mergedir' ZIP_IN='$(ZIP_IN)' MOZ_SIMPLE_PACKAGE_NAME= UNIVERSAL_BINARY=
|
|
|
|
$(PYTHON) $(topsrcdir)/toolkit/mozapps/installer/unpack.py $(DIST)/l10n-stage/$(MOZ_PKG_DIR)$(_RESPATH)
|
|
|
|
cd $(DIST)/l10n-stage && test $$(cat $(MOZ_PKG_DIR)$(_RESPATH)/update.locale) = x-test
|