зеркало из https://github.com/mozilla/gecko-dev.git
Getting the build process up for Windows, thanx to Arthur Barrett
not part of build, still need to conditionally add transformiix to extensions/makefile.win
This commit is contained in:
Родитель
ecb5362cfc
Коммит
9368491fdc
|
@ -24,15 +24,98 @@ include <$(DEPTH)/config/config.mak>
|
||||||
|
|
||||||
DEFINES=-DMOZ_XSL
|
DEFINES=-DMOZ_XSL
|
||||||
|
|
||||||
MODULE=transformix
|
MODULE=transformiix
|
||||||
IS_COMPONENT = 1
|
IS_COMPONENT = 1
|
||||||
|
|
||||||
CPPSRCS= \
|
CPPSRCS= \
|
||||||
XSLTProcessorModule.cpp \
|
XSLTProcessorModule.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPP_OBJS= \
|
CPP_OBJS= \
|
||||||
.\$(OBJDIR)\XSLTProcessorModule.obj \
|
..\source\base\$(OBJDIR)\ArrayList.obj \
|
||||||
|
..\source\base\$(OBJDIR)\CommandLineUtils.obj \
|
||||||
|
..\source\base\$(OBJDIR)\DefaultStringComparator.obj \
|
||||||
|
..\source\base\$(OBJDIR)\Double.obj \
|
||||||
|
..\source\base\$(OBJDIR)\HashTable.obj \
|
||||||
|
..\source\base\$(OBJDIR)\Integer.obj \
|
||||||
|
..\source\base\$(OBJDIR)\List.obj \
|
||||||
|
..\source\base\$(OBJDIR)\MITREObjectWrapper.obj \
|
||||||
|
..\source\base\$(OBJDIR)\Map.obj \
|
||||||
|
..\source\base\$(OBJDIR)\NamedMap.obj \
|
||||||
|
..\source\base\$(OBJDIR)\SimpleErrorObserver.obj \
|
||||||
|
..\source\base\$(OBJDIR)\Stack.obj \
|
||||||
|
..\source\base\$(OBJDIR)\StringComparator.obj \
|
||||||
|
..\source\base\$(OBJDIR)\StringList.obj \
|
||||||
|
..\source\base\$(OBJDIR)\Tokenizer.obj \
|
||||||
|
..\source\base\$(OBJDIR)\MozillaString.obj \
|
||||||
|
..\source\net\$(OBJDIR)\URIUtils.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaAttr.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaCDATASection.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaCharacterData.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaComment.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaDOMImplementation.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaDocument.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaDocumentFragment.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaDocumentType.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaElement.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaEntity.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaEntityReference.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaNamedNodeMap.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaNode.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaNodeList.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaNotation.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaProcInstruction.obj \
|
||||||
|
..\source\xml\dom\mozImpl\$(OBJDIR)\MozillaText.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\AdditiveExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\AttributeExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\AttributeValueTemplate.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\BasicNodeExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\BooleanExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\BooleanFunctionCall.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\BooleanResult.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\ElementExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\ErrorFunctionCall.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\ExprLexer.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\ExprParser.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\ExtensionFunctionCall.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\FilterExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\FunctionCall.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\IdentityExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\LocationStep.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\MultiplicativeExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\NodeSet.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\NodeSetFunctionCall.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\NumberExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\NumberFunctionCall.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\NumberResult.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\ParentExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\PathExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\PredicateList.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\RelationalExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\RootExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\StringExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\StringFunctionCall.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\StringResult.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\TextExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\UnionExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\VariableRefExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\WildCardExpr.obj \
|
||||||
|
..\source\xpath\$(OBJDIR)\XPathNames.obj \
|
||||||
|
..\source\xml\$(OBJDIR)\XMLUtils.obj \
|
||||||
|
..\source\xml\$(OBJDIR)\XMLDOMUtils.obj \
|
||||||
|
..\source\xml\util\$(OBJDIR)\DOMHelper.obj \
|
||||||
|
..\source\xml\parser\$(OBJDIR)\XMLParser.obj \
|
||||||
|
..\source\xslt\$(OBJDIR)\OutputFormat.obj \
|
||||||
|
..\source\xslt\$(OBJDIR)\Names.obj \
|
||||||
|
..\source\xslt\$(OBJDIR)\Numbering.obj \
|
||||||
|
..\source\xslt\$(OBJDIR)\ProcessorState.obj \
|
||||||
|
..\source\xslt\$(OBJDIR)\VariableBinding.obj \
|
||||||
|
..\source\xslt\$(OBJDIR)\XSLTProcessor.obj \
|
||||||
|
..\source\xslt\functions\$(OBJDIR)\DocumentFunctionCall.obj \
|
||||||
|
..\source\xslt\functions\$(OBJDIR)\GenerateIdFunctionCall.obj \
|
||||||
|
..\source\xslt\util\$(OBJDIR)\NodeSorter.obj \
|
||||||
|
..\source\xslt\util\$(OBJDIR)\NodeStack.obj \
|
||||||
|
.\$(OBJDIR)\XSLTProcessorModule.obj \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
MAKE_OBJ_TYPE = DLL
|
MAKE_OBJ_TYPE = DLL
|
||||||
|
@ -50,15 +133,16 @@ LINCS= -I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\source\xslt\functions \
|
||||||
-I..\source\base -I..\source\net -I..\source\xml\parser
|
-I..\source\base -I..\source\net -I..\source\xml\parser
|
||||||
|
|
||||||
# These are the libraries we need to link with to create the dll
|
# These are the libraries we need to link with to create the dll
|
||||||
LLIBS= \
|
LLIBS=$(LLIBS) $(LIBNSPR) \
|
||||||
$(DIST)\lib\xpcom.lib \
|
$(DIST)\lib\xpcom.lib \
|
||||||
$(DIST)\lib\transformix_base.lib \
|
!ifndef NECKO
|
||||||
$(DIST)\lib\transformix_xml.lib \
|
$(DIST)\lib\netlib.lib \
|
||||||
$(DIST)\lib\transformix_xml_dom_mozImpl.lib \
|
!endif
|
||||||
$(DIST)\lib\transformix_xslt.lib \
|
$(DIST)\lib\expat.lib
|
||||||
$(DIST)\lib\transformix_xpath.lib \
|
|
||||||
$(DIST)\lib\transformix_xslt_util.lib \
|
WIN_LIBS = \
|
||||||
$(DIST)\lib\transformix_xslt_functions.lib
|
shell32.lib \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
|
|
|
@ -49,8 +49,4 @@ else
|
||||||
endif
|
endif
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
ifdef MOZ_XSL
|
|
||||||
DEFINES += -DMOZILLA
|
|
||||||
endif
|
|
||||||
|
|
||||||
install:: $(OBJS)
|
install:: $(OBJS)
|
|
@ -21,46 +21,46 @@
|
||||||
|
|
||||||
DEPTH=..\..\..\..
|
DEPTH=..\..\..\..
|
||||||
|
|
||||||
LIBRARY_NAME=transformix_base
|
!if defined(MOZ_XSL)
|
||||||
MODULE=transformix
|
DEFINES=-DMOZ_XSL
|
||||||
DEFINES=-DMOZILLA
|
!endif
|
||||||
|
|
||||||
CPPSRCS= \
|
CPPSRCS= \
|
||||||
ArrayList.cpp \
|
ArrayList.cpp \
|
||||||
CommandLineUtils.cpp \
|
CommandLineUtils.cpp \
|
||||||
DefaultStringComparator.cpp \
|
DefaultStringComparator.cpp \
|
||||||
Double.cpp \
|
Double.cpp \
|
||||||
HashTable.cpp \
|
HashTable.cpp \
|
||||||
Integer.cpp \
|
Integer.cpp \
|
||||||
List.cpp \
|
List.cpp \
|
||||||
MITREObjectWrapper.cpp \
|
MITREObjectWrapper.cpp \
|
||||||
MozillaString.cpp \
|
MozillaString.cpp \
|
||||||
NamedMap.cpp \
|
NamedMap.cpp \
|
||||||
SimpleErrorObserver.cpp \
|
SimpleErrorObserver.cpp \
|
||||||
Stack.cpp \
|
Stack.cpp \
|
||||||
TxString.cpp \
|
Map.cpp \
|
||||||
StringComparator.cpp \
|
StringComparator.cpp \
|
||||||
StringList.cpp \
|
StringList.cpp \
|
||||||
Tokenizer.cpp \
|
Tokenizer.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPP_OBJS= \
|
CPP_OBJS= \
|
||||||
.\$(OBJDIR)\ArrayList.obj \
|
.\$(OBJDIR)\ArrayList.obj \
|
||||||
.\$(OBJDIR)\CommandLineUtils.obj \
|
.\$(OBJDIR)\CommandLineUtils.obj \
|
||||||
.\$(OBJDIR)\DefaultStringComparator.obj \
|
.\$(OBJDIR)\DefaultStringComparator.obj \
|
||||||
.\$(OBJDIR)\Double.obj \
|
.\$(OBJDIR)\Double.obj \
|
||||||
.\$(OBJDIR)\HashTable.obj \
|
.\$(OBJDIR)\HashTable.obj \
|
||||||
.\$(OBJDIR)\Integer.obj \
|
.\$(OBJDIR)\Integer.obj \
|
||||||
.\$(OBJDIR)\List.obj \
|
.\$(OBJDIR)\List.obj \
|
||||||
.\$(OBJDIR)\MITREObjectWrapper.obj \
|
.\$(OBJDIR)\MITREObjectWrapper.obj \
|
||||||
.\$(OBJDIR)\MozillaString.obj \
|
.\$(OBJDIR)\MozillaString.obj \
|
||||||
.\$(OBJDIR)\NamedMap.obj \
|
.\$(OBJDIR)\NamedMap.obj \
|
||||||
.\$(OBJDIR)\SimpleErrorObserver.obj \
|
.\$(OBJDIR)\SimpleErrorObserver.obj \
|
||||||
.\$(OBJDIR)\Stack.obj \
|
.\$(OBJDIR)\Stack.obj \
|
||||||
.\$(OBJDIR)\TxString.obj \
|
.\$(OBJDIR)\Map.obj \
|
||||||
.\$(OBJDIR)\StringComparator.obj \
|
.\$(OBJDIR)\StringComparator.obj \
|
||||||
.\$(OBJDIR)\StringList.obj \
|
.\$(OBJDIR)\StringList.obj \
|
||||||
.\$(OBJDIR)\Tokenizer.obj \
|
.\$(OBJDIR)\Tokenizer.obj \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
EXPORTS = \
|
EXPORTS = \
|
||||||
|
@ -75,8 +75,4 @@ LCFLAGS = \
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
install:: $(LIBRARY)
|
install:: $(CPP_OBJS)
|
||||||
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
||||||
|
|
||||||
clobber::
|
|
||||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
||||||
|
|
|
@ -21,6 +21,6 @@
|
||||||
|
|
||||||
DEPTH=..\..\..
|
DEPTH=..\..\..
|
||||||
|
|
||||||
DIRS=base xml xpath xslt
|
DIRS=base net xml xpath xslt
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
#!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=..\..\..\..
|
||||||
|
|
||||||
|
!if defined(MOZ_XSL)
|
||||||
|
DEFINES=-DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
|
CPPSRCS= \
|
||||||
|
URIUtils.cpp \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
CPP_OBJS= \
|
||||||
|
.\$(OBJDIR)\URIUtils.obj \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
EXPORTS = \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\base
|
||||||
|
|
||||||
|
LCFLAGS = \
|
||||||
|
$(LCFLAGS) \
|
||||||
|
$(DEFINES) \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
|
install:: $(CPP_OBJS)
|
|
@ -0,0 +1,26 @@
|
||||||
|
#!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=..\..\..\..\..
|
||||||
|
|
||||||
|
DIRS=mozImpl
|
||||||
|
|
||||||
|
include <$(DEPTH)\config\rules.mak>
|
|
@ -21,53 +21,53 @@
|
||||||
|
|
||||||
DEPTH=..\..\..\..\..\..
|
DEPTH=..\..\..\..\..\..
|
||||||
|
|
||||||
LIBRARY_NAME=transformix_xml_dom_mozImpl
|
|
||||||
MODULE=transformix
|
|
||||||
DEFINES=-DMOZ_XSL
|
DEFINES=-DMOZ_XSL
|
||||||
CPPSRCS= \
|
|
||||||
MozillaAttr.cpp \
|
CPPSRCS= \
|
||||||
MozillaCDATASection.cpp \
|
MozillaAttr.cpp \
|
||||||
MozillaCharacterData.cpp \
|
MozillaCDATASection.cpp \
|
||||||
MozillaComment.cpp \
|
MozillaCharacterData.cpp \
|
||||||
MozillaDocument.cpp \
|
MozillaComment.cpp \
|
||||||
MozillaDocumentFragment.cpp \
|
MozillaDocument.cpp \
|
||||||
MozillaDocumentType.cpp \
|
MozillaDocumentFragment.cpp \
|
||||||
MozillaDOMImplementation.cpp \
|
MozillaDocumentType.cpp \
|
||||||
MozillaElement.cpp \
|
MozillaDOMImplementation.cpp \
|
||||||
MozillaEntity.cpp \
|
MozillaElement.cpp \
|
||||||
MozillaEntityReference.cpp \
|
MozillaEntity.cpp \
|
||||||
MozillaNamedNodeMap.cpp \
|
MozillaEntityReference.cpp \
|
||||||
|
MozillaNamedNodeMap.cpp \
|
||||||
MozillaNode.cpp \
|
MozillaNode.cpp \
|
||||||
MozillaNodeList.cpp \
|
MozillaNodeList.cpp \
|
||||||
MozillaNotation.cpp \
|
MozillaNotation.cpp \
|
||||||
MozillaProcInstruction.cpp \
|
MozillaProcInstruction.cpp \
|
||||||
MozillaText.cpp \
|
MozillaText.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPP_OBJS= \
|
CPP_OBJS= \
|
||||||
.\$(OBJDIR)\MozillaAttr.obj \
|
.\$(OBJDIR)\MozillaAttr.obj \
|
||||||
.\$(OBJDIR)\MozillaCDATASection.obj \
|
.\$(OBJDIR)\MozillaCDATASection.obj \
|
||||||
.\$(OBJDIR)\MozillaCharacterData.obj \
|
.\$(OBJDIR)\MozillaCharacterData.obj \
|
||||||
.\$(OBJDIR)\MozillaComment.obj \
|
.\$(OBJDIR)\MozillaComment.obj \
|
||||||
.\$(OBJDIR)\MozillaDocument.obj \
|
.\$(OBJDIR)\MozillaDocument.obj \
|
||||||
.\$(OBJDIR)\MozillaDocumentFragment.obj \
|
.\$(OBJDIR)\MozillaDocumentFragment.obj \
|
||||||
.\$(OBJDIR)\MozillaDocumentType.obj \
|
.\$(OBJDIR)\MozillaDocumentType.obj \
|
||||||
.\$(OBJDIR)\MozillaDOMImplementation.obj \
|
.\$(OBJDIR)\MozillaDOMImplementation.obj\
|
||||||
.\$(OBJDIR)\MozillaElement.obj \
|
.\$(OBJDIR)\MozillaElement.obj \
|
||||||
.\$(OBJDIR)\MozillaEntity.obj \
|
.\$(OBJDIR)\MozillaEntity.obj \
|
||||||
.\$(OBJDIR)\MozillaEntityReference.obj \
|
.\$(OBJDIR)\MozillaEntityReference.obj \
|
||||||
.\$(OBJDIR)\MozillaNamedNodeMap.obj \
|
.\$(OBJDIR)\MozillaNamedNodeMap.obj \
|
||||||
.\$(OBJDIR)\MozillaNode.obj \
|
.\$(OBJDIR)\MozillaNode.obj \
|
||||||
.\$(OBJDIR)\MozillaNodeList.obj \
|
.\$(OBJDIR)\MozillaNodeList.obj \
|
||||||
.\$(OBJDIR)\MozillaNotation.obj \
|
.\$(OBJDIR)\MozillaNotation.obj \
|
||||||
.\$(OBJDIR)\MozillaProcInstruction.obj \
|
.\$(OBJDIR)\MozillaProcInstruction.obj \
|
||||||
.\$(OBJDIR)\MozillaText.obj \
|
.\$(OBJDIR)\MozillaText.obj \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
EXPORTS = \
|
EXPORTS = \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\..\..\base -I..\..\dom
|
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\..\..\base -I..\..\dom \
|
||||||
|
-I..\..
|
||||||
|
|
||||||
LCFLAGS = \
|
LCFLAGS = \
|
||||||
$(LCFLAGS) \
|
$(LCFLAGS) \
|
||||||
|
@ -76,8 +76,4 @@ LCFLAGS = \
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
install:: $(LIBRARY)
|
install:: $(CPP_OBJS)
|
||||||
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
||||||
|
|
||||||
clobber::
|
|
||||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
||||||
|
|
|
@ -21,16 +21,18 @@
|
||||||
|
|
||||||
DEPTH=..\..\..\..
|
DEPTH=..\..\..\..
|
||||||
|
|
||||||
DIRS=dom
|
DIRS=dom parser util
|
||||||
|
|
||||||
LIBRARY_NAME=transformix_xml
|
!if defined(MOZ_XSL)
|
||||||
MODULE=transformix
|
DEFINES=$(DEFINES) -DMOZ_XSL
|
||||||
CPPSRCS= \
|
!endif
|
||||||
|
|
||||||
|
CPPSRCS= \
|
||||||
XMLDOMUtils.cpp \
|
XMLDOMUtils.cpp \
|
||||||
XMLUtils.cpp \
|
XMLUtils.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPP_OBJS= \
|
CPP_OBJS= \
|
||||||
.\$(OBJDIR)\XMLDOMUtils.obj \
|
.\$(OBJDIR)\XMLDOMUtils.obj \
|
||||||
.\$(OBJDIR)\XMLUtils.obj \
|
.\$(OBJDIR)\XMLUtils.obj \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
@ -47,8 +49,4 @@ LCFLAGS = \
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
install:: $(LIBRARY)
|
install:: $(CPP_OBJS)
|
||||||
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
||||||
|
|
||||||
clobber::
|
|
||||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
#!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=..\..\..\..\..
|
||||||
|
|
||||||
|
!if defined(MOZ_XSL)
|
||||||
|
DEFINES=$(DEFINES) -DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
|
CPPSRCS= \
|
||||||
|
XMLParser.cpp \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
CPP_OBJS= \
|
||||||
|
.\$(OBJDIR)\XMLParser.obj \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
EXPORTS = \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
LINCS=-I..\..\base -I..\dom -I$(PUBLIC)\expat
|
||||||
|
|
||||||
|
LCFLAGS = \
|
||||||
|
-DXML_UNICODE \
|
||||||
|
$(LCFLAGS) \
|
||||||
|
$(DEFINES) \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
|
install:: $(CPP_OBJS)
|
||||||
|
|
|
@ -0,0 +1,51 @@
|
||||||
|
#!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=..\..\..\..\..
|
||||||
|
|
||||||
|
!if defined(MOZ_XSL)
|
||||||
|
DEFINES=$(DEFINES) -DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
|
CPPSRCS= \
|
||||||
|
XMLPrinter.cpp \
|
||||||
|
HTMLPrinter.cpp \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
CPP_OBJS= \
|
||||||
|
.\$(OBJDIR)\XMLPrinter.obj \
|
||||||
|
.\$(OBJDIR)\HTMLPrinter.obj \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
EXPORTS = \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
LINCS=-I..\..\base -I..\dom
|
||||||
|
|
||||||
|
LCFLAGS = \
|
||||||
|
$(LCFLAGS) \
|
||||||
|
$(DEFINES) \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
|
install:: $(CPP_OBJS)
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
#!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=..\..\..\..\..
|
||||||
|
|
||||||
|
!if defined(MOZ_XSL)
|
||||||
|
DEFINES=$(DEFINES) -DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
|
CPPSRCS= \
|
||||||
|
DOMHelper.cpp \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
CPP_OBJS= \
|
||||||
|
.\$(OBJDIR)\DOMHelper.obj \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
EXPORTS = \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
LINCS=-I..\..\base -I..\..\xml\dom
|
||||||
|
|
||||||
|
LCFLAGS = \
|
||||||
|
$(LCFLAGS) \
|
||||||
|
$(DEFINES) \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
|
install:: $(CPP_OBJS)
|
||||||
|
|
|
@ -21,8 +21,9 @@
|
||||||
|
|
||||||
DEPTH=..\..\..\..
|
DEPTH=..\..\..\..
|
||||||
|
|
||||||
LIBRARY_NAME=transformix_xpath
|
!if defined(MOZ_XSL)
|
||||||
MODULE=transformix
|
DEFINES=$(DEFINES) -DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
CPPSRCS= \
|
CPPSRCS= \
|
||||||
AdditiveExpr.cpp \
|
AdditiveExpr.cpp \
|
||||||
|
@ -113,8 +114,4 @@ LCFLAGS = \
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
install:: $(LIBRARY)
|
install:: $(CPP_OBJS)
|
||||||
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
||||||
|
|
||||||
clobber::
|
|
||||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
||||||
|
|
|
@ -21,22 +21,26 @@
|
||||||
|
|
||||||
DEPTH=..\..\..\..\..
|
DEPTH=..\..\..\..\..
|
||||||
|
|
||||||
LIBRARY_NAME=transformix_xslt_functions
|
!if defined(MOZ_XSL)
|
||||||
MODULE=transformix
|
DEFINES=$(DEFINES) -DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
CPPSRCS= \
|
CPPSRCS= \
|
||||||
GenerateIDFunctionCall.cpp \
|
GenerateIDFunctionCall.cpp \
|
||||||
|
DocumentFunctionCall.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPP_OBJS= \
|
CPP_OBJS= \
|
||||||
.\$(OBJDIR)\GenerateIDFunctionCall.obj \
|
.\$(OBJDIR)\GenerateIDFunctionCall.obj \
|
||||||
|
.\$(OBJDIR)\DocumentFunctionCall.obj \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
EXPORTS = \
|
EXPORTS = \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\..\base -I..\..\xml\dom \
|
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\..\base -I..\..\xml\dom \
|
||||||
-I..\..\xpath -I..\..\xml -I..\ -I..\..\xml\util
|
-I..\..\xpath -I..\..\xml -I..\ -I..\..\xml\util \
|
||||||
|
-I..\..\net -I..\..\xml\parser
|
||||||
|
|
||||||
LCFLAGS = \
|
LCFLAGS = \
|
||||||
$(LCFLAGS) \
|
$(LCFLAGS) \
|
||||||
|
@ -45,8 +49,4 @@ LCFLAGS = \
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
install:: $(LIBRARY)
|
install:: $(CPP_OBJS)
|
||||||
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
||||||
|
|
||||||
clobber::
|
|
||||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
||||||
|
|
|
@ -23,10 +23,9 @@ DEPTH=..\..\..\..
|
||||||
|
|
||||||
DIRS=util functions
|
DIRS=util functions
|
||||||
|
|
||||||
LIBRARY_NAME=transformix_xslt
|
!if defined(MOZ_XSL)
|
||||||
MODULE=transformix
|
|
||||||
|
|
||||||
DEFINES=-DMOZ_XSL
|
DEFINES=-DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
CPPSRCS= \
|
CPPSRCS= \
|
||||||
Names.cpp \
|
Names.cpp \
|
||||||
|
@ -47,7 +46,6 @@ CPP_OBJS= \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
EXPORTS = \
|
EXPORTS = \
|
||||||
XSLTProcessor.h \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\xpath -I..\xml\dom -I..\xml\dom\mozImpl \
|
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\xpath -I..\xml\dom -I..\xml\dom\mozImpl \
|
||||||
|
@ -60,8 +58,4 @@ LCFLAGS = \
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
install:: $(LIBRARY)
|
install:: $(CPP_OBJS)
|
||||||
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
||||||
|
|
||||||
clobber::
|
|
||||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
||||||
|
|
|
@ -21,8 +21,9 @@
|
||||||
|
|
||||||
DEPTH=..\..\..\..\..
|
DEPTH=..\..\..\..\..
|
||||||
|
|
||||||
LIBRARY_NAME=transformix_xslt_util
|
!if defined(MOZ_XSL)
|
||||||
MODULE=transformix
|
DEFINES=$(DEFINES) -DMOZ_XSL
|
||||||
|
!endif
|
||||||
|
|
||||||
CPPSRCS= \
|
CPPSRCS= \
|
||||||
NodeStack.cpp \
|
NodeStack.cpp \
|
||||||
|
@ -47,8 +48,5 @@ LCFLAGS = \
|
||||||
|
|
||||||
include <$(DEPTH)\config\rules.mak>
|
include <$(DEPTH)\config\rules.mak>
|
||||||
|
|
||||||
install:: $(LIBRARY)
|
install:: $(CPP_OBJS)
|
||||||
$(MAKE_INSTALL) $(LIBRARY) $(DIST)\lib
|
|
||||||
|
|
||||||
clobber::
|
|
||||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче