#!nmake # # The contents of this file are subject to the Netscape 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/NPL/ # # 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.org code. # # The Initial Developer of the Original Code is Netscape # Communications Corporation. Portions created by Netscape are # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # # Contributor(s): DEPTH=..\..\..\.. MODULE = transformiix REQUIRES = string \ xpcom \ dom \ widget \ content \ $(NULL) include <$(DEPTH)/config/config.mak> !if defined(TX_EXE) DEFINES=$(DEFINES) -DTX_EXE !endif CPPSRCS= \ AdditiveExpr.cpp \ AttributeExpr.cpp \ AttributeValueTemplate.cpp \ BasicNodeExpr.cpp \ BooleanExpr.cpp \ BooleanFunctionCall.cpp \ BooleanResult.cpp \ ElementExpr.cpp \ ErrorFunctionCall.cpp \ Expr.cpp \ ExprLexer.cpp \ ExprLexerChars.cpp \ ExprParser.cpp \ ExtensionFunctionCall.cpp \ FilterExpr.cpp \ FunctionCall.cpp \ LocationStep.cpp \ MultiplicativeExpr.cpp \ NodeSet.cpp \ NodeSetFunctionCall.cpp \ NumberExpr.cpp \ NumberFunctionCall.cpp \ NumberResult.cpp \ PathExpr.cpp \ PredicateList.cpp \ RelationalExpr.cpp \ RootExpr.cpp \ StringExpr.cpp \ StringFunctionCall.cpp \ StringResult.cpp \ TextExpr.cpp \ UnionExpr.cpp \ UnaryExpr.cpp \ VariableRefExpr.cpp \ XPathNames.cpp \ !if !defined(TX_EXE) nsNodeSet.cpp \ XPathProcessor.cpp \ !endif $(NULL) CPP_OBJS= \ .\$(OBJDIR)\AdditiveExpr.obj \ .\$(OBJDIR)\AttributeExpr.obj \ .\$(OBJDIR)\AttributeValueTemplate.obj \ .\$(OBJDIR)\BasicNodeExpr.obj \ .\$(OBJDIR)\BooleanExpr.obj \ .\$(OBJDIR)\BooleanFunctionCall.obj \ .\$(OBJDIR)\BooleanResult.obj \ .\$(OBJDIR)\ElementExpr.obj \ .\$(OBJDIR)\ErrorFunctionCall.obj \ .\$(OBJDIR)\Expr.obj \ .\$(OBJDIR)\ExprLexer.obj \ .\$(OBJDIR)\ExprLexerChars.obj \ .\$(OBJDIR)\ExprParser.obj \ .\$(OBJDIR)\ExtensionFunctionCall.obj \ .\$(OBJDIR)\FilterExpr.obj \ .\$(OBJDIR)\FunctionCall.obj \ .\$(OBJDIR)\LocationStep.obj \ .\$(OBJDIR)\MultiplicativeExpr.obj \ .\$(OBJDIR)\NodeSet.obj \ .\$(OBJDIR)\NodeSetFunctionCall.obj \ .\$(OBJDIR)\NumberExpr.obj \ .\$(OBJDIR)\NumberFunctionCall.obj \ .\$(OBJDIR)\NumberResult.obj \ .\$(OBJDIR)\PathExpr.obj \ .\$(OBJDIR)\PredicateList.obj \ .\$(OBJDIR)\RelationalExpr.obj \ .\$(OBJDIR)\RootExpr.obj \ .\$(OBJDIR)\StringExpr.obj \ .\$(OBJDIR)\StringFunctionCall.obj \ .\$(OBJDIR)\StringResult.obj \ .\$(OBJDIR)\TextExpr.obj \ .\$(OBJDIR)\UnionExpr.obj \ .\$(OBJDIR)\UnaryExpr.obj \ .\$(OBJDIR)\VariableRefExpr.obj \ .\$(OBJDIR)\XPathNames.obj \ !if !defined(TX_EXE) .\$(OBJDIR)\nsNodeSet.obj \ .\$(OBJDIR)\XPathProcessor.obj \ !endif $(NULL) EXPORTS = \ $(NULL) LINCS=-I$(PUBLIC)\xpcom \ -I..\base -I..\xml -I..\xml\dom -I..\xslt \ -I..\xslt\functions -I..\xslt\util LCFLAGS = \ $(LCFLAGS) \ $(DEFINES) \ $(NULL) include <$(DEPTH)\config\rules.mak> install:: $(OBJDIR) $(CPP_OBJS)