2005-06-08 22:04:25 +04:00
|
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
2012-05-21 15:12:37 +04: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 06:21:25 +04:00
|
|
|
|
2005-07-28 23:48:12 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2008-10-20 23:57:47 +04: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
|
2008-12-11 14:58:41 +03:00
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
vpath book%.inc $(LOCALE_MERGEDIR)/browser/profile
|
|
|
|
endif
|
|
|
|
vpath book%.inc $(LOCALE_SRCDIR)/profile
|
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
vpath book%.inc @srcdir@/en-US/profile
|
|
|
|
endif
|
2008-10-20 23:57:47 +04:00
|
|
|
|
|
|
|
|
2006-06-29 03:26:14 +04:00
|
|
|
SUBMAKEFILES += \
|
|
|
|
$(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/Makefile \
|
|
|
|
$(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/locales/Makefile \
|
|
|
|
$(NULL)
|
2005-07-29 20:38:23 +04:00
|
|
|
|
2005-05-09 18:34:08 +04: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 06:21:25 +04:00
|
|
|
|
2009-03-12 01:39:24 +03:00
|
|
|
PWD := $(CURDIR)
|
2007-05-02 18:18:20 +04:00
|
|
|
|
2008-12-24 17:08:08 +03: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 19:26:53 +03:00
|
|
|
# work in that case.
|
|
|
|
ZIP_IN ?= $(_ABS_DIST)/$(PACKAGE)
|
2008-12-24 17:08:08 +03:00
|
|
|
WIN32_INSTALLER_IN ?= $(_ABS_DIST)/$(PKG_INST_PATH)$(PKG_INST_BASENAME).exe
|
2009-10-06 01:04:18 +04:00
|
|
|
RETRIEVE_WINDOWS_INSTALLER = 1
|
2008-11-14 19:26:53 +03:00
|
|
|
|
2009-06-15 18:17:19 +04:00
|
|
|
MOZ_LANGPACK_EID=langpack-$(AB_CD)@firefox.mozilla.org
|
2004-11-30 11:23:02 +03:00
|
|
|
|
2015-01-20 21:07:03 +03: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 21:15:10 +04:00
|
|
|
|
2009-08-14 15:06:15 +04:00
|
|
|
ifneq (,$(filter cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
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-03 01:34:21 +04:00
|
|
|
MOZ_PKG_MAC_EXTRA=--symlink '/Applications:/ '
|
2009-08-14 15:06:15 +04: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; \
|
2010-08-13 08:36:16 +04:00
|
|
|
$(RM) $(_ABS_DIST)/l10n-stage/setup.exe; \
|
|
|
|
cp ../installer/windows/l10ngen/setup.exe $(_ABS_DIST)/l10n-stage; \
|
2012-12-11 04:23:09 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2013-12-03 01:34:21 +04: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 15:06:15 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2014-10-28 04:43:51 +03:00
|
|
|
SEARCHPLUGINS_NAMES = $(shell cat $(call MERGE_FILE,/searchplugins/list.txt)) ddg
|
2015-08-15 12:08:58 +03:00
|
|
|
SEARCHPLUGINS_FILENAMES = $(subst :hidden,,$(SEARCHPLUGINS_NAMES))
|
2015-05-19 16:57:08 +03:00
|
|
|
SEARCHPLUGINS_PATH := .deps/generated_$(AB_CD)
|
2014-10-08 08:41:39 +04:00
|
|
|
SEARCHPLUGINS_TARGET := libs searchplugins
|
2015-08-15 12:08:58 +03:00
|
|
|
SEARCHPLUGINS := $(foreach plugin,$(addsuffix .xml,$(SEARCHPLUGINS_FILENAMES)),$(or $(wildcard $(call EN_US_OR_L10N_FILE,searchplugins/$(plugin))),$(info Missing searchplugin: $(plugin))))
|
2014-12-10 22:56:38 +03: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-13 00:51:23 +04:00
|
|
|
PP_TARGETS += SEARCHPLUGINS
|
|
|
|
|
2015-05-19 16:57:08 +03:00
|
|
|
list-txt = $(SEARCHPLUGINS_PATH)/list.txt
|
|
|
|
GARBAGE += $(list-txt)
|
|
|
|
|
|
|
|
libs:: searchplugins
|
|
|
|
|
2013-02-13 00:51:23 +04: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 21:15:10 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2004-11-30 11:23:02 +03:00
|
|
|
|
2009-06-15 18:17:19 +04:00
|
|
|
include $(topsrcdir)/toolkit/locales/l10n.mk
|
|
|
|
|
2015-05-19 16:57:08 +03: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 23:08:56 +04:00
|
|
|
$(STAGEDIST): $(DIST)/branding
|
|
|
|
|
|
|
|
$(DIST)/branding:
|
|
|
|
$(NSINSTALL) -D $@
|
|
|
|
|
2004-11-30 11:23:02 +03:00
|
|
|
PROFILE_FILES = \
|
|
|
|
localstore.rdf \
|
2008-12-11 14:58:41 +03:00
|
|
|
mimeTypes.rdf \
|
2004-11-30 11:23:02 +03:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
PROFILE_CHROME = userChrome-example.css userContent-example.css
|
|
|
|
|
2008-12-11 14:58:41 +03:00
|
|
|
NO_JA_JP_MAC_AB_CD := $(if $(filter ja-JP-mac, $(AB_CD)),ja,$(AB_CD))
|
|
|
|
|
|
|
|
%/defaults/profile/bookmarks.html: bookmarks.inc generic/profile/bookmarks.html.in
|
2013-11-09 05:35:44 +04:00
|
|
|
$(call py_action,preprocessor, \
|
2008-12-11 14:58:41 +03:00
|
|
|
-I $< \
|
|
|
|
-DAB_CD=$(NO_JA_JP_MAC_AB_CD) \
|
|
|
|
$(srcdir)/generic/profile/bookmarks.html.in \
|
2013-11-09 05:35:44 +04:00
|
|
|
-o $@)
|
2008-12-11 14:58:41 +03:00
|
|
|
|
|
|
|
libs:: $(FINAL_TARGET)/defaults/profile/bookmarks.html ;
|
|
|
|
|
|
|
|
libs:: $(addprefix generic/profile/,$(PROFILE_FILES))
|
2007-01-04 21:38:06 +03:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile
|
2004-11-30 11:23:02 +03:00
|
|
|
|
2011-03-18 20:29:56 +03:00
|
|
|
libs:: $(call MERGE_FILES,$(addprefix profile/chrome/,$(PROFILE_CHROME)))
|
2007-01-04 21:38:06 +03:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile/chrome
|
2004-11-30 11:23:02 +03:00
|
|
|
|
2005-04-21 03:10:56 +04:00
|
|
|
libs-%:
|
2008-10-20 23:57:47 +04:00
|
|
|
$(NSINSTALL) -D $(DIST)/install
|
2015-11-05 00:35:53 +03:00
|
|
|
@$(MAKE) -C ../../toolkit/locales libs-$* XPI_ROOT_APPID=$(XPI_ROOT_APPID)
|
2012-11-13 11:17:14 +04:00
|
|
|
@$(MAKE) -C ../../services/sync/locales AB_CD=$* XPI_NAME=locale-$*
|
2013-04-12 12:23:10 +04:00
|
|
|
ifdef MOZ_WEBAPP_RUNTIME
|
|
|
|
@$(MAKE) -C ../../webapprt/locales AB_CD=$* XPI_NAME=locale-$*
|
|
|
|
endif
|
2012-11-13 11:17:14 +04:00
|
|
|
@$(MAKE) -C ../../extensions/spellcheck/locales AB_CD=$* XPI_NAME=locale-$*
|
|
|
|
@$(MAKE) -C ../../intl/locales AB_CD=$* XPI_NAME=locale-$*
|
2015-11-05 00:35:53 +03:00
|
|
|
@$(MAKE) -C ../../devtools/client/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID=$(XPI_ROOT_APPID)
|
2015-05-19 16:57:08 +03:00
|
|
|
@$(MAKE) -B searchplugins AB_CD=$* XPI_NAME=locale-$*
|
2012-11-13 11:17:14 +04: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-21 03:10:56 +04:00
|
|
|
|
2011-03-18 20:29:56 +03:00
|
|
|
repackage-win32-installer: WIN32_INSTALLER_OUT=$(_ABS_DIST)/$(PKG_INST_PATH)$(PKG_INST_BASENAME).exe
|
2012-08-07 23:08:48 +04:00
|
|
|
repackage-win32-installer: $(call ESCAPE_WILDCARD,$(WIN32_INSTALLER_IN)) $(SUBMAKEFILES) libs-$(AB_CD)
|
2013-12-03 01:34:21 +04:00
|
|
|
@echo 'Repackaging $(WIN32_INSTALLER_IN) into $(WIN32_INSTALLER_OUT).'
|
2006-06-29 01:08:52 +04:00
|
|
|
$(MAKE) -C $(DEPTH)/$(MOZ_BRANDING_DIRECTORY) export
|
2006-06-28 20:58:07 +04:00
|
|
|
$(MAKE) -C ../installer/windows CONFIG_DIR=l10ngen l10ngen/setup.exe l10ngen/7zSD.sfx
|
2010-08-13 08:36:16 +04:00
|
|
|
$(MAKE) repackage-zip \
|
|
|
|
AB_CD=$(AB_CD) \
|
|
|
|
MOZ_PKG_FORMAT=SFX7Z \
|
2013-12-03 01:34:21 +04: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-21 03:10:56 +04:00
|
|
|
|
2008-10-20 23:57:47 +04:00
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
2012-08-07 23:08:48 +04:00
|
|
|
repackage-win32-installer-%: $(STAGEDIST)
|
2013-12-03 01:34:21 +04:00
|
|
|
@$(MAKE) repackage-win32-installer AB_CD=$* WIN32_INSTALLER_IN='$(WIN32_INSTALLER_IN)'
|
2012-08-07 23:08:48 +04:00
|
|
|
|
|
|
|
repackage-zip-%: repackage-win32-installer-%
|
2008-10-20 23:57:47 +04:00
|
|
|
else
|
|
|
|
repackage-win32-installer-%: ;
|
|
|
|
endif
|
2004-11-30 11:23:02 +03:00
|
|
|
|
|
|
|
|
2008-10-20 23:57:47 +04:00
|
|
|
clobber-zip:
|
|
|
|
$(RM) $(STAGEDIST)/chrome/$(AB_CD).jar \
|
|
|
|
$(STAGEDIST)/chrome/$(AB_CD).manifest \
|
2012-07-12 10:30:58 +04:00
|
|
|
$(STAGEDIST)/webapprt/chrome/$(AB_CD).jar \
|
|
|
|
$(STAGEDIST)/webapprt/chrome/$(AB_CD).manifest \
|
2012-04-19 11:39:52 +04:00
|
|
|
$(STAGEDIST)/$(PREF_DIR)/firefox-l10n.js
|
2015-05-19 16:57:08 +03:00
|
|
|
$(RM) -rf $(STAGEDIST)/dictionaries \
|
2011-05-04 15:14:51 +04:00
|
|
|
$(STAGEDIST)/hyphenation \
|
2005-05-05 16:38:27 +04:00
|
|
|
$(STAGEDIST)/defaults/profile \
|
2012-07-12 10:30:58 +04:00
|
|
|
$(STAGEDIST)/chrome/$(AB_CD) \
|
|
|
|
$(STAGEDIST)/webapprt/chrome/$(AB_CD)
|
2008-10-20 23:57:47 +04:00
|
|
|
|
2005-04-21 03:10:56 +04:00
|
|
|
|
2009-04-07 21:21:57 +04:00
|
|
|
langpack: langpack-$(AB_CD)
|
|
|
|
|
2005-04-21 03:10:56 +04: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 23:57:47 +04:00
|
|
|
installers-%: clobber-% langpack-% repackage-win32-installer-% repackage-zip-%
|
2013-12-03 01:34:21 +04:00
|
|
|
@echo 'repackaging done'
|
2005-06-08 22:04:25 +04:00
|
|
|
|
|
|
|
ifdef MOZ_UPDATER
|
2012-09-05 22:43:23 +04: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 07:03:28 +04:00
|
|
|
libs:: $(call MERGE_FILE,updater/updater.ini) $(call mkdir_deps,$(DIST)/bin)
|
2005-06-08 22:04:25 +04:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2009-05-21 22:02:08 +04:00
|
|
|
cat $< $(srcdir)/../installer/windows/nsis/updater_append.ini | \
|
2013-12-03 01:34:21 +04:00
|
|
|
sed -e 's/^InfoText=/Info=/' -e 's/^TitleText=/Title=/' | \
|
|
|
|
sed -e 's/%MOZ_APP_DISPLAYNAME%/$(MOZ_APP_DISPLAYNAME)/' > \
|
2013-08-13 19:15:42 +04:00
|
|
|
$(FINAL_TARGET)/../updater.ini
|
2005-06-08 22:04:25 +04:00
|
|
|
else
|
2009-05-23 01:55:55 +04:00
|
|
|
cat $< | \
|
2013-12-03 01:34:21 +04:00
|
|
|
sed -e 's/^InfoText=/Info=/' -e 's/^TitleText=/Title=/' | \
|
|
|
|
sed -e 's/%MOZ_APP_DISPLAYNAME%/$(MOZ_APP_DISPLAYNAME)/' > \
|
2013-08-13 19:15:42 +04:00
|
|
|
$(FINAL_TARGET)/../updater.ini
|
2005-06-08 22:04:25 +04:00
|
|
|
endif
|
|
|
|
endif
|
2008-01-23 03:03:58 +03:00
|
|
|
|
|
|
|
ifdef MOZ_CRASHREPORTER
|
2008-10-20 23:57:47 +04:00
|
|
|
libs:: crashreporter-override.ini
|
2008-01-23 03:03:58 +03:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)
|
|
|
|
endif
|
2008-08-27 19:02:33 +04:00
|
|
|
|
2008-10-20 23:57:47 +04:00
|
|
|
ident:
|
2013-12-03 01:34:21 +04:00
|
|
|
@printf 'fx_revision '
|
2009-06-25 20:31:06 +04:00
|
|
|
@$(PYTHON) $(topsrcdir)/config/printconfigsetting.py \
|
|
|
|
$(STAGEDIST)/application.ini App SourceStamp
|
2013-12-03 01:34:21 +04:00
|
|
|
@printf 'buildid '
|
2009-06-25 20:31:06 +04:00
|
|
|
@$(PYTHON) $(topsrcdir)/config/printconfigsetting.py \
|
|
|
|
$(STAGEDIST)/application.ini App BuildID
|
2008-10-20 23:57:47 +04:00
|
|
|
|
|
|
|
merge-%:
|
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
$(RM) -rf $(LOCALE_MERGEDIR)
|
|
|
|
MACOSX_DEPLOYMENT_TARGET= compare-locales -m $(LOCALE_MERGEDIR) $(srcdir)/l10n.ini $(L10NBASEDIR) $*
|
|
|
|
endif
|
|
|
|
@echo
|
2011-03-18 20:29:56 +03:00
|
|
|
|
|
|
|
# test target, depends on make package
|
|
|
|
# try to repack x-test, with just toolkit/defines.inc being there
|
2012-09-20 21:36:08 +04:00
|
|
|
l10n-check:: INNER_UNMAKE_PACKAGE=true
|
2011-03-18 20:29:56 +03:00
|
|
|
l10n-check::
|
|
|
|
$(RM) -rf x-test
|
|
|
|
$(NSINSTALL) -D x-test/toolkit
|
2013-12-03 01:34:21 +04:00
|
|
|
echo '#define MOZ_LANG_TITLE Just testing' > x-test/toolkit/defines.inc
|
|
|
|
$(MAKE) installers-x-test L10NBASEDIR='$(PWD)' LOCALE_MERGEDIR='$(PWD)/mergedir'
|
2013-01-23 14:23:15 +04:00
|
|
|
$(PYTHON) $(topsrcdir)/toolkit/mozapps/installer/unpack.py $(DIST)/l10n-stage/$(STAGEPATH)$(MOZ_PKG_DIR)$(_BINPATH)
|
2012-09-20 21:36:08 +04:00
|
|
|
cd $(DIST)/l10n-stage && test $$(cat $(STAGEPATH)$(MOZ_PKG_DIR)$(_BINPATH)/update.locale) = x-test
|