Added CurrentFunctionCall and SystemPropertyFunctionCall to the Makefile so

that the standalone linux version builds again


git-svn-id: svn://10.0.0.236/trunk@85204 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kvisco%ziplink.net 2001-01-20 04:21:52 +00:00
parent bc08aba223
commit e26f0655f8

View File

@ -12,8 +12,10 @@ XMLPARSER_PATH = $(XML)/parser
EXPAT_PARSER_PATH = $(XMLPARSER_PATH)/xmlparse
ALL_OBJS = \
GenerateIdFunctionCall.o \
DocumentFunctionCall.o
CurrentFunctionCall.o \
GenerateIdFunctionCall.o \
DocumentFunctionCall.o \
SystemPropertyFunctionCall.o
INCLUDE_PATH = -I. \
-I$(BASE) \
@ -29,12 +31,18 @@ INCLUDE_PATH = -I. \
target: $(ALL_OBJS)
CurrentFunctionCall.o: XSLTFunctions.h CurrentFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c CurrentFunctionCall.cpp
GenerateIdFunctionCall.o: XSLTFunctions.h GenerateIdFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c GenerateIdFunctionCall.cpp
DocumentFunctionCall.o: XSLTFunctions.h DocumentFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c DocumentFunctionCall.cpp
SystemPropertyFunctionCall.o: XSLTFunctions.h SystemPropertyFunctionCall.cpp
$(CC) $(INCLUDE_PATH) -c SystemPropertyFunctionCall.cpp