118 lines
3.9 KiB
Plaintext
118 lines
3.9 KiB
Plaintext
#!nmake
|
|
#
|
|
# The contents of this file are subject to the Mozilla Public
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
# implied. See the License for the specific language governing
|
|
# rights and limitations under the License.
|
|
#
|
|
# The Original Code is Mozilla MathML Project.
|
|
#
|
|
# The Initial Developer of the Original Code is Heriot-Watt
|
|
# University, Edinburgh. Portions created by Heriot-Watt University
|
|
# are Copyright (C) 1999 Heriot-Watt University. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# David J. Fiddes <D.J.Fiddes@hw.ac.uk>
|
|
#
|
|
|
|
DEPTH=..\..\..\..
|
|
|
|
LIBRARY_NAME=layoutmathmlbase_s
|
|
MODULE=layout
|
|
REQUIRES = xpcom \
|
|
content \
|
|
widget \
|
|
string \
|
|
gfx \
|
|
locale \
|
|
intl \
|
|
unicharutil \
|
|
webshell \
|
|
necko \
|
|
dom \
|
|
view \
|
|
docshell \
|
|
webbrowser_core \
|
|
windowwatcher \
|
|
pref \
|
|
$(NULL)
|
|
|
|
DEFINES= -DWIN32_LEAN_AND_MEAN
|
|
|
|
CPP_OBJS= .\$(OBJDIR)\nsMathMLChar.obj \
|
|
.\$(OBJDIR)\nsMathMLFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLContainerFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLForeignFrameWrapper.obj \
|
|
.\$(OBJDIR)\nsMathMLmrowFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmphantomFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmfencedFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmfracFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmsubFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmiFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmtextFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmsubsupFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmmultiscriptsFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmsupFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmtableFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmoFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmunderFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmoverFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmunderoverFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmpaddedFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmspaceFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmsFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmstyleFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmsqrtFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmrootFrame.obj \
|
|
.\$(OBJDIR)\nsMathMLmactionFrame.obj \
|
|
$(NULL)
|
|
|
|
EXPORTS = \
|
|
$(NULL)
|
|
|
|
LINCS= \
|
|
-I..\..\..\html\style\src \
|
|
-I..\..\..\html\base\src \
|
|
-I..\..\..\base\src \
|
|
-I..\..\..\html\table\src \
|
|
-I..\..\content\src \
|
|
$(NULL)
|
|
|
|
LCFLAGS = \
|
|
$(LCFLAGS) \
|
|
$(DEFINES) \
|
|
$(NULL)
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
libs:: $(LIBRARY)
|
|
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
|
|
libs::
|
|
$(MAKE_INSTALL) mathfont.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontPUA.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontCMSY10.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontCMEX10.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontMTExtra.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontMath1.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontMath2.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontMath4.properties $(DIST)\bin\res\fonts
|
|
$(MAKE_INSTALL) mathfontSymbol.properties $(DIST)\bin\res\fonts
|
|
|
|
clobber::
|
|
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
rm -f $(DIST)\bin\res\fonts\mathfont.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontPUA.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontCMSY10.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontCMEX10.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontMTExtra.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontMath1.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontMath2.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontMath4.properties
|
|
rm -f $(DIST)\bin\res\fonts\mathfontSymbol.properties
|