67 lines
1.7 KiB
Plaintext
67 lines
1.7 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>
|
|
# Roger B. Sidje <rbs@maths.uq.edu.au>
|
|
#
|
|
|
|
DEPTH=..\..\..\..
|
|
|
|
LIBRARY_NAME=raptormathmlcontent_s
|
|
MODULE=raptor
|
|
REQUIRES=xpcom raptor pref
|
|
|
|
DEFINES=-D_IMPL_NS_HTML -DWIN32_LEAN_AND_MEAN
|
|
|
|
EXPORTS = nsMathMLOperators.h \
|
|
nsMathMLOperatorList.h \
|
|
$(NULL)
|
|
|
|
CPPSRCS= \
|
|
nsMathMLAtoms.cpp \
|
|
nsMathMLOperators.cpp \
|
|
$(NULL)
|
|
|
|
CPP_OBJS= \
|
|
.\$(OBJDIR)\nsMathMLAtoms.obj \
|
|
.\$(OBJDIR)\nsMathMLOperators.obj \
|
|
$(NULL)
|
|
|
|
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I$(PUBLIC)\js \
|
|
-I..\..\..\html\style\src -I..\..\..\html\base\src -I$(PUBLIC)\dom \
|
|
-I..\..\..\html\document\src \
|
|
-I$(PUBLIC)\netlib -I..\..\..\base\src -I$(PUBLIC)\pref
|
|
|
|
LCFLAGS = \
|
|
$(LCFLAGS) \
|
|
$(DEFINES) \
|
|
$(NULL)
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
install:: $(LIBRARY)
|
|
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
|
|
install::
|
|
$(MAKE_INSTALL) mathml.dtd $(DIST)\bin\dtd
|
|
|
|
clobber::
|
|
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
rm -f $(DIST)\bin\dtd\mathml.dtd
|