build.mk (1026B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk 6 7 installer: 8 @$(MAKE) -C mobile/android/installer installer 9 10 package: 11 @$(MAKE) -C mobile/android/installer 12 13 stage-package: 14 $(MAKE) -C mobile/android/installer stage-package 15 16 deb: package 17 @$(MAKE) -C mobile/android/installer deb 18 19 upload:: 20 @$(MAKE) -C mobile/android/installer upload 21 22 wget-en-US: 23 @$(MAKE) -C mobile/android/locales $@ 24 25 # make -j1 because dependencies in l10n build targets don't work 26 # with parallel builds 27 merge-% chrome-%: 28 $(MAKE) -j1 -C mobile/android/locales $@ 29 30 ifdef ENABLE_TESTS 31 # Implemented in testing/testsuite-targets.mk 32 33 mochitest-browser-chrome: 34 $(RUN_MOCHITEST) --flavor=browser 35 $(CHECK_TEST_ERROR) 36 37 mochitest:: mochitest-browser-chrome 38 39 .PHONY: mochitest-browser-chrome 40 endif 41 42 ifeq ($(OS_TARGET),Linux) 43 deb: installer 44 endif