remove file to fix readness. This file was removed some time ago, but I still had changes to it in my tree.

This commit is contained in:
sicking%bigfoot.com 2001-06-26 13:07:12 +00:00
Родитель ae3ccdc3d8
Коммит 145cbcd4d6
1 изменённых файлов: 0 добавлений и 65 удалений

Просмотреть файл

@ -1,65 +0,0 @@
ROOT = ../..
BASE = $(ROOT)/base
NET = $(ROOT)/net
XPATH = $(ROOT)/xpath
XML = $(ROOT)/xml
XML_UTIL = $(XML)/util
DOM = $(XML)/dom
XSLT = $(ROOT)/xslt
XMLPARSER_PATH = $(XML)/parser
EXPAT_PARSER_PATH = $(XMLPARSER_PATH)/xmlparse
ALL_OBJS = \
CurrentFunctionCall.o \
DocumentFunctionCall.o \
ElementAvailableFnCall.o \
FunctionAvailableFnCall.o \
GenerateIdFunctionCall.o \
txKeyFunctionCall.o \
SystemPropertyFunctionCall.o
INCLUDE_PATH = -I. \
-I$(BASE) \
-I$(NET) \
-I$(XPATH) \
-I$(XML) \
-I$(XML)/parser \
-I$(XML_UTIL) \
-I$(DOM) \
-I$(XSLT) \
-I$(XSLT)/util \
-I$(EXPAT_PARSER_PATH)
target: $(ALL_OBJS)
CurrentFunctionCall.o: XSLTFunctions.h CurrentFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c CurrentFunctionCall.cpp
DocumentFunctionCall.o: XSLTFunctions.h DocumentFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c DocumentFunctionCall.cpp
ElementAvailableFnCall.o: XSLTFunctions.h ElementAvailableFnCall.cpp
$(CC) $(INCLUDE_PATH) -c ElementAvailableFnCall.cpp
FunctionAvailableFnCall.o: XSLTFunctions.h FunctionAvailableFnCall.cpp
$(CC) $(INCLUDE_PATH) -c FunctionAvailableFnCall.cpp
GenerateIdFunctionCall.o: XSLTFunctions.h GenerateIdFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c GenerateIdFunctionCall.cpp
txKeyFunctionCall.o: XSLTFunctions.h txKeyFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c txKeyFunctionCall.cpp
SystemPropertyFunctionCall.o: XSLTFunctions.h SystemPropertyFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c SystemPropertyFunctionCall.cpp