https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 62e566d3efcd8db7b08fc40e7543c70b7d5acd2b authored by Mike Hommey on 02 December 2013, 21:34:21 UTC
Bug 944454 - Wrap non-prefixed freetype headers from newer freetype versions. r=ted,a=lsblakk,DONTBUILD
Tip revision: 62e566d
Makefile.in
# 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/.

include $(topsrcdir)/config/config.mk

export PYMAKE = $(.PYMAKE)

libs::
	$(PYTHON) $(srcdir)/copy_source.py $(topsrcdir) $(srcdir)/source/lib $(FINAL_TARGET)/modules/commonjs >copy_source.mk
	$(MAKE) -f copy_source.mk libs

include $(topsrcdir)/config/rules.mk

TEST_FILES = \
  source/app-extension \
  source/bin \
  source/data \
  source/python-lib \
  source/test \
  source/package.json \
  source/mapping.json \
  $(NULL)

# Remove this once the test harness uses the APIs built into Firefox
TEST_FILES += source/lib

PKG_STAGE = $(DIST)/test-package-stage

stage-tests-package:: $(TEST_FILES)
	$(INSTALL) $^ $(PKG_STAGE)/jetpack
back to top