build.mk 508 B

12345678910111213141516171819
  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. ifneq (extensions,$(MOZ_BUILD_APP))
  5. $(error This file shouldn't be included without --enable-application=extensions)
  6. endif
  7. ifndef MOZ_EXTENSIONS
  8. $(error You forgot to set --enable-extensions)
  9. endif
  10. TIERS += app
  11. tier_app_dirs += extensions
  12. installer:
  13. @echo Check each extension for an installer.
  14. @exit 1