Checking in initial version of Keith Visco's (kvisco@ziplink.net) XSL processor, Transformiix. Some glue code to interface it with mozilla is #ifdef MOZILLA protected.

git-svn-id: svn://10.0.0.236/trunk@44991 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nisheeth%netscape.com
1999-08-28 08:19:56 +00:00
parent 5b86aa3a5c
commit b791d4288f
183 changed files with 37007 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
target: xml_parser
BASE_PATH = ../../base
DOM_PATH = ../dom
PARSER_PATH = .
EXPAT_PARSER_PATH = xmlparse
EXPAT_TOKEN_PATH = xmltok
INCLUDE_PATH = -I $(PARSER_PATH) -I $(BASE_PATH) -I $(DOM_PATH) \
-I $(EXPAT_TOKEN_PATH) -I $(EXPAT_PARSER_PATH) -I-
BASE_OBJS = $(BASE_PATH)/String.o
DOM_OBJS = $(DOM_PATH)/NodeDefinition.o \
$(DOM_PATH)/Document.o \
$(DOM_PATH)/DocumentFragment.o \
$(DOM_PATH)/NamedNodeMap.o \
$(DOM_PATH)/NodeListDefinition.o \
$(DOM_PATH)/Element.o \
$(DOM_PATH)/Attr.o \
$(DOM_PATH)/CharacterData.o \
$(DOM_PATH)/Text.o \
$(DOM_PATH)/Comment.o \
$(DOM_PATH)/CDATASection.o \
$(DOM_PATH)/ProcessingInstruction.o \
$(DOM_PATH)/Notation.o \
$(DOM_PATH)/Entity.o $(DOM_PATH)EntityReference.o \
$(DOM_PATH)/DocumentType.o \
$(DOM_PATH)/DOMImplementation.o
EXPAT_OBJS = $(EXPAT_TOKEN_PATH)/xmltok.o \
$(EXPAT_TOKEN_PATH)/xmlrole.o \
$(EXPAT_PARSER_PATH)/xmlparse.o \
$(EXPAT_PARSER_PATH)/hashtable.o
PARSER_OBJS = $(PARSER_PATH)/XMLParser.o
ALL_OBJS = $(BASE_OBJS) $(DOM_OBJS) $(EXPAT_OBJS) $(PARSER_OBJS)
CC = g++ -D XML_UNICODE -D __cplusplus
xml_parser: $(ALL_OBJS)
XMLParser.o: XMLParser.h XMLParser.cpp
$(CC) $(INCLUDE_PATH) -c XMLParser.cpp
$(EXPAT_OBJS):
make -f expat.mk
$(DOM_OBJS):
cd $(DOM_PATH); make
$(BASE_OBJS):
cd $(BASE_PATH); make