updated to point to the root directory

This commit is contained in:
kvisco%ziplink.net 2000-05-18 09:16:45 +00:00
parent 319a9586ff
commit 64547de59f

View File

@ -1,6 +1,6 @@
#ifndef PROJ_PATH
BASE_PATH = ../../base
BASE_PATH = ../../../base
DOM_PATH = .
#endif
@ -9,22 +9,22 @@ INCLUDE_PATHS = -I$(BASE_PATH) -I. -I-
CC := $(CC) -g $(INCLUDE_PATHS)
DOM_OBJS = NodeDefinition.o \
Document.o \
DocumentFragment.o \
NamedNodeMap.o \
NodeListDefinition.o \
Element.o \
Attr.o \
CharacterData.o \
Text.o \
Comment.o \
CDATASection.o \
ProcessingInstruction.o \
Notation.o \
Entity.o \
EntityReference.o \
DocumentType.o \
DOM_OBJS = NodeDefinition.o \
Document.o \
DocumentFragment.o \
NamedNodeMap.o \
NodeListDefinition.o \
Element.o \
Attr.o \
CharacterData.o \
Text.o \
Comment.o \
CDATASection.o \
ProcessingInstruction.o \
Notation.o \
Entity.o \
EntityReference.o \
DocumentType.o \
DOMImplementation.o
target: $(DOM_OBJS)
@ -79,3 +79,8 @@ DocumentType.o: DocumentType.cpp dom.h
DOMImplementation.o: DOMImplementation.cpp dom.h
$(CC) -c DOMImplementation.cpp