gecko/layout/mathml/Makefile.in

49 lines
1.4 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
install:: $(font_properties)
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/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 $@
$(PYTHON) $(MOZILLA_DIR)/config/Preprocessor.py --marker=% $(DEFINES) $(ACDEFINES) $< > $@
libs:: $(DIST)/bin/res/fonts/$(math_properties)
install:: $(DESTDIR)$(mozappdir)/res/fonts/$(math_properties)