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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
DEFINES += -DAB_CD=$(AB_CD)
|
|
|
|
|
|
|
|
XULPPFLAGS += -I$(LOCALE_SRCDIR)/defines.inc
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2008-10-20 12:57:47 -07:00
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
vpath crashreporter.% $(LOCALE_MERGEDIR)/toolkit/crashreporter
|
|
|
|
endif
|
|
|
|
vpath crashreporter.% $(LOCALE_SRCDIR)/crashreporter
|
|
|
|
ifdef LOCALE_MERGEDIR
|
|
|
|
vpath crashreporter.% @srcdir@/en-US/crashreporter
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
libs-%:
|
|
|
|
@$(MAKE) -C ../../netwerk/locales/ libs AB_CD=$* XPI_NAME=locale-$*
|
|
|
|
@$(MAKE) -C ../../dom/locales/ libs AB_CD=$* XPI_NAME=locale-$*
|
|
|
|
@$(MAKE) -C ../../security/manager/locales/ libs AB_CD=$* XPI_NAME=locale-$*
|
|
|
|
@$(MAKE) libs AB_CD=$* XPI_NAME=locale-$*
|
2007-10-10 11:49:04 -07:00
|
|
|
|
2009-10-08 03:19:25 -07:00
|
|
|
# target to be used by multi-locale l10n builds, just add this locale
|
|
|
|
# like regular chrome code
|
|
|
|
chrome-%:
|
|
|
|
@$(MAKE) -C $(DEPTH)/netwerk/locales/ chrome AB_CD=$*
|
|
|
|
@$(MAKE) -C $(DEPTH)/dom/locales/ chrome AB_CD=$*
|
|
|
|
@$(MAKE) -C $(DEPTH)/security/manager/locales/ chrome AB_CD=$*
|
|
|
|
@$(MAKE) chrome AB_CD=$*
|
2009-05-21 11:02:08 -07:00
|
|
|
|
|
|
|
ifdef MOZ_UPDATER
|
|
|
|
libs:: update.locale
|
2013-12-02 13:34:21 -08:00
|
|
|
sed -e 's/%AB_CD%/$(AB_CD)/' $< > $(FINAL_TARGET)/update.locale
|
2009-05-21 11:02:08 -07:00
|
|
|
endif
|
|
|
|
|
2007-10-10 11:49:04 -07:00
|
|
|
ifdef MOZ_CRASHREPORTER
|
2008-10-20 12:57:47 -07:00
|
|
|
libs:: crashreporter.ini
|
2009-09-18 19:59:53 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
2007-10-10 11:49:04 -07:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/crashreporter.app/Contents/MacOS
|
|
|
|
else
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)
|
|
|
|
endif
|
|
|
|
endif
|