2012-05-21 04:12:37 -07: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/.
|
2008-09-30 15:03:16 -07:00
|
|
|
|
2009-01-26 08:43:38 -08:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2008-09-30 15:03:16 -07:00
|
|
|
|
2009-09-06 11:53:04 -07:00
|
|
|
SUBMAKEFILES += \
|
|
|
|
$(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/Makefile \
|
|
|
|
$(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/locales/Makefile \
|
2012-01-10 02:10:22 -08:00
|
|
|
$(DEPTH)/mobile/locales/Makefile \
|
2009-09-06 11:53:04 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2009-01-26 08:43:38 -08:00
|
|
|
PREF_JS_EXPORTS = $(firstword $(wildcard $(LOCALE_SRCDIR)/mobile-l10n.js) \
|
|
|
|
@srcdir@/en-US/mobile-l10n.js )
|
2008-09-30 15:03:16 -07:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
2009-01-26 08:43:38 -08:00
|
|
|
|
|
|
|
include $(topsrcdir)/toolkit/locales/l10n.mk
|
|
|
|
|
|
|
|
clobber-zip:
|
|
|
|
$(RM) $(STAGEDIST)/chrome/$(AB_CD).jar \
|
|
|
|
$(STAGEDIST)/chrome/$(AB_CD).manifest \
|
2011-12-06 07:54:12 -08:00
|
|
|
$(STAGEDIST)/defaults/pref/mobile-l10n.js
|
2009-10-16 20:14:58 -07:00
|
|
|
$(RM) -r $(STAGEDIST)/dictionaries \
|
2011-05-05 08:03:01 -07:00
|
|
|
$(STAGEDIST)/hyphenation \
|
2009-01-26 08:43:38 -08:00
|
|
|
$(STAGEDIST)/defaults/profile \
|
|
|
|
$(STAGEDIST)/chrome/$(AB_CD)
|
|
|
|
|
2011-12-06 07:54:12 -08:00
|
|
|
# need to kill stage for repacks for now due to the library moves
|
|
|
|
# in PACKAGE and UNPACKAGE
|
|
|
|
# also clean up potential left-overs of multi-locale builds, notably
|
|
|
|
# values-*/strings.xml. Those would be in the way of a single locale build,
|
|
|
|
# which this target is for
|
|
|
|
clobber-stage:
|
|
|
|
$(RM) -rf $(STAGEDIST)
|
|
|
|
$(RM) $(DEPTH)/mobile/android/base/res/values-*/strings.xml
|
|
|
|
|
2009-01-26 08:43:38 -08:00
|
|
|
libs-%:
|
2012-11-12 23:17:14 -08:00
|
|
|
@$(MAKE) -C $(DEPTH)/mobile/locales libs-$*
|
|
|
|
@$(MAKE) libs AB_CD=$* XPI_NAME=locale-$* PREF_DIR=defaults/pref
|
2011-12-21 15:10:06 -08:00
|
|
|
ifeq ($(OS_TARGET),Android)
|
2012-11-12 23:17:14 -08:00
|
|
|
@$(MAKE) -C $(DEPTH)/mobile/android/base/locales AB_CD=$* XPI_NAME=locale-$*
|
2011-12-21 15:10:06 -08:00
|
|
|
endif
|
2009-01-26 08:43:38 -08:00
|
|
|
|
2009-10-08 08:47:29 -07:00
|
|
|
# Tailored target to just add the chrome processing for multi-locale builds
|
|
|
|
chrome-%:
|
2011-12-21 15:10:06 -08:00
|
|
|
@$(MAKE) -C $(DEPTH)/mobile/locales chrome-$*
|
2009-10-08 08:47:29 -07:00
|
|
|
@$(MAKE) chrome AB_CD=$*
|
2010-12-22 13:13:22 -08:00
|
|
|
ifeq ($(OS_TARGET),Android)
|
2011-12-06 07:54:12 -08:00
|
|
|
@$(MAKE) -C $(DEPTH)/mobile/android/base/locales chrome-$*
|
2010-12-22 13:13:22 -08:00
|
|
|
endif
|
2009-10-08 08:47:29 -07:00
|
|
|
|
2009-01-26 08:43:38 -08:00
|
|
|
# This is a generic target that will make a langpack and repack tarball
|
|
|
|
# builds. It is called from the tinderbox scripts. Alter it with caution.
|
|
|
|
|
2011-12-06 07:54:12 -08:00
|
|
|
installers-%: clobber-stage repackage-zip-%
|
2013-12-02 13:34:21 -08:00
|
|
|
@echo 'repackaging done'
|
2009-02-26 14:16:07 -08:00
|
|
|
|
2009-10-05 13:50:34 -07:00
|
|
|
# When we unpack fennec on MacOS X the platform.ini and application.ini are in slightly
|
|
|
|
# different locations that on all other platforms
|
|
|
|
ifeq (Darwin, $(OS_ARCH))
|
2010-04-28 07:27:59 -07:00
|
|
|
ifdef LIBXUL_SDK
|
2013-12-02 13:34:21 -08:00
|
|
|
GECKO_PLATFORM_INI_PATH='$(STAGEDIST)/../Frameworks/XUL.framework/Versions/$(MOZILLA_VERSION)/platform.ini'
|
2010-04-28 07:27:59 -07:00
|
|
|
else
|
2013-12-02 13:34:21 -08:00
|
|
|
GECKO_PLATFORM_INI_PATH='$(STAGEDIST)/platform.ini'
|
2010-04-28 07:27:59 -07:00
|
|
|
endif
|
2013-12-02 13:34:21 -08:00
|
|
|
FENNEC_APPLICATION_INI_PATH='$(STAGEDIST)/application.ini'
|
2009-10-05 13:50:34 -07:00
|
|
|
else
|
2010-04-28 07:27:59 -07:00
|
|
|
ifdef LIBXUL_SDK
|
2013-12-02 13:34:21 -08:00
|
|
|
GECKO_PLATFORM_INI_PATH='$(STAGEDIST)/xulrunner/platform.ini'
|
2010-04-28 07:27:59 -07:00
|
|
|
else
|
2013-12-02 13:34:21 -08:00
|
|
|
GECKO_PLATFORM_INI_PATH='$(STAGEDIST)/platform.ini'
|
2010-04-28 07:27:59 -07:00
|
|
|
endif
|
2013-12-02 13:34:21 -08:00
|
|
|
FENNEC_APPLICATION_INI_PATH='$(STAGEDIST)/application.ini'
|
2009-10-05 13:50:34 -07:00
|
|
|
endif
|
2009-11-05 05:02:24 -08:00
|
|
|
|
2009-02-26 14:16:07 -08:00
|
|
|
ident:
|
2013-12-02 13:34:21 -08:00
|
|
|
@printf 'gecko_revision '
|
2009-10-05 13:50:34 -07:00
|
|
|
@$(PYTHON) $(topsrcdir)/config/printconfigsetting.py $(GECKO_PLATFORM_INI_PATH) Build SourceStamp
|
2013-12-02 13:34:21 -08:00
|
|
|
@printf 'fennec_revision '
|
2009-10-05 13:50:34 -07:00
|
|
|
@$(PYTHON) $(topsrcdir)/config/printconfigsetting.py $(FENNEC_APPLICATION_INI_PATH) App SourceStamp
|
2013-12-02 13:34:21 -08:00
|
|
|
@printf 'buildid '
|
2009-11-19 10:38:43 -08:00
|
|
|
@$(PYTHON) $(topsrcdir)/config/printconfigsetting.py $(FENNEC_APPLICATION_INI_PATH) App BuildID
|
2009-11-05 05:02:24 -08:00
|
|
|
|
2010-11-22 22:40:26 -08:00
|
|
|
merge-%:
|
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
$(RM) -rf $(LOCALE_MERGEDIR)
|
|
|
|
MACOSX_DEPLOYMENT_TARGET= compare-locales -m $(LOCALE_MERGEDIR) $(srcdir)/l10n.ini $(L10NBASEDIR) $*
|
|
|
|
endif
|
|
|
|
@echo
|