mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
a470038314
--HG-- rename : config/Preprocessor.py => python/mozbuild/mozbuild/preprocessor.py rename : config/tests/unit-Expression.py => python/mozbuild/mozbuild/test/test_expression.py rename : config/tests/unit-LineEndings.py => python/mozbuild/mozbuild/test/test_line_endings.py rename : config/tests/unit-Preprocessor.py => python/mozbuild/mozbuild/test/test_preprocessor.py
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
#!gmake
|
|
#
|
|
# 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/.
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../style \
|
|
-I$(srcdir)/../base \
|
|
-I$(srcdir)/../generic \
|
|
-I$(srcdir)/../tables \
|
|
-I$(topsrcdir)/content/base/src \
|
|
-I$(topsrcdir)/content/mathml/content/src \
|
|
-I$(srcdir)/../xul/base/src \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
font_properties = \
|
|
mathfontMathJax_Main.properties \
|
|
mathfontUnicode.properties \
|
|
mathfontSTIXNonUnicode.properties \
|
|
mathfontSTIXSize1.properties \
|
|
mathfontSTIXSizeOneSym.properties \
|
|
mathfontAsanaMath.properties \
|
|
mathfontStandardSymbolsL.properties \
|
|
$(NULL)
|
|
|
|
ifeq ($(TARGET_MD_ARCH),win32)
|
|
font_properties += \
|
|
mathfontSymbol.properties
|
|
endif
|
|
|
|
libs:: $(font_properties)
|
|
$(INSTALL) $^ $(DIST)/bin/res/fonts
|
|
|
|
math_properties = mathfont.properties
|
|
|
|
$(DIST)/bin/res/fonts/$(math_properties) $(DESTDIR)$(mozappdir)/res/fonts/$(math_properties): $(math_properties) Makefile
|
|
test -d $(@D) || $(NSINSTALL) -D $(@D)
|
|
rm -f $@
|
|
$(call py_action,preprocessor,--marker=% $(DEFINES) $(ACDEFINES) $< -o $@)
|
|
|
|
libs:: $(DIST)/bin/res/fonts/$(math_properties)
|
|
install:: $(DESTDIR)$(mozappdir)/res/fonts/$(math_properties)
|