2012-05-30 20:48:24 +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/.
|
2008-07-22 16:21:15 +04:00
|
|
|
|
2013-11-26 03:03:48 +04:00
|
|
|
ifndef COMM_BUILD
|
2008-07-22 16:21:15 +04:00
|
|
|
installer:
|
|
|
|
@$(MAKE) -C suite/installer installer
|
|
|
|
|
|
|
|
package:
|
|
|
|
@$(MAKE) -C suite/installer
|
|
|
|
|
2008-08-24 02:28:30 +04:00
|
|
|
package-compare:
|
|
|
|
@$(MAKE) -C suite/installer package-compare
|
|
|
|
|
2008-07-22 16:21:15 +04:00
|
|
|
install::
|
|
|
|
@$(MAKE) -C suite/installer install
|
2008-08-20 18:42:13 +04:00
|
|
|
|
2008-11-15 16:56:19 +03:00
|
|
|
source-package::
|
|
|
|
@$(MAKE) -C suite/installer source-package
|
|
|
|
|
2009-05-10 16:34:04 +04:00
|
|
|
upload::
|
|
|
|
@$(MAKE) -C suite/installer upload
|
|
|
|
|
2015-09-24 09:36:23 +03:00
|
|
|
source-upload::
|
|
|
|
@$(MAKE) -C suite/installer source-upload
|
|
|
|
|
|
|
|
|
2008-08-20 18:42:13 +04:00
|
|
|
# mochitests need to be run from the Mozilla build system
|
|
|
|
ifdef ENABLE_TESTS
|
2009-03-26 17:00:18 +03:00
|
|
|
# Backend is implemented in mozilla/testing/testsuite-targets.mk.
|
|
|
|
# This part is copied from mozilla/browser/build.mk.
|
2009-03-22 00:16:42 +03:00
|
|
|
|
2008-08-20 18:42:13 +04:00
|
|
|
mochitest-browser-chrome:
|
2009-03-26 17:00:18 +03:00
|
|
|
$(RUN_MOCHITEST) --browser-chrome
|
2008-08-20 18:42:13 +04:00
|
|
|
$(CHECK_TEST_ERROR)
|
|
|
|
|
|
|
|
mochitest:: mochitest-browser-chrome
|
|
|
|
|
|
|
|
.PHONY: mochitest-browser-chrome
|
|
|
|
endif
|
2013-11-26 03:03:48 +04:00
|
|
|
endif
|