blob: ea9196e73e99ff75daffea12074a06553e64adc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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/.
# Note that this file is "included" from $topsrcdir/Makefile.in, therefore
# paths are relative to $topobjdir not the location of this file.
package:
@$(MAKE) -C comm/mail/installer
package-compare:
@$(MAKE) -C comm/mail/installer package-compare
stage-package:
@$(MAKE) -C comm/mail/installer stage-package
install::
@$(MAKE) -C comm/mail/installer install
source-package::
@$(MAKE) -C comm/mail/installer source-package
upload::
@$(MAKE) -C comm/mail/installer upload
source-upload::
@$(MAKE) -C comm/mail/installer source-upload
hg-bundle::
@$(MAKE) -C comm/mail/installer hg-bundle
wget-en-US:
$(MAKE) -C comm/mail/locales wget-en-US
merge-% post-merge-% installers-% langpack-% chrome-%:
$(MAKE) -C comm/mail/locales $@
ifdef ENABLE_TESTS
include $(topsrcdir)/comm/mail/testsuite-targets.mk
endif
|