From 62bbe5f89b4c1139f5fecd54de29dfdbe2204be9 Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Wed, 11 Nov 1998 18:58:51 +0000 Subject: [PATCH] Fixed to get Unix building. git-svn-id: svn://10.0.0.236/trunk@14432 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/rdf/src/Makefile | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/mozilla/rdf/src/Makefile b/mozilla/rdf/src/Makefile index e43966fc730..0a12056201e 100644 --- a/mozilla/rdf/src/Makefile +++ b/mozilla/rdf/src/Makefile @@ -26,22 +26,32 @@ LIBRARY_NAME = rdf REQUIRES = nspr xpcom netlib raptor -LOCAL_INCLUDES = \ - -I(PUBLIC)/rdf \ - -I(PUBLIC)/xpcom \ - -I(PUBLIC)/netlib \ +LOCAL_INCLUDES= \ + -I$(PUBLIC)/rdf \ + -I$(PUBLIC)/xpcom \ + -I$(PUBLIC)/netlib \ + $(NULL) -CSRCS = \ - vocab.c \ - core.c \ - remstore.c \ - utils.c \ - rdfparse.c \ - bmk2mcf.c \ - rdfht.c \ - columns.c \ - ht.c \ - $(NULL) +CSRCS= \ + vocab.c \ + core.c \ + remstore.c \ + utils.c \ + rdfparse.c \ + bmk2rdf.c \ + columns.c \ + rdfht.c \ + $(NULL) + +CPPSRCS= \ + comwrap.cpp \ + netglue.cpp \ + nsRDFDataModel.cpp \ + nsRDFDataModelItem.cpp \ + nsRDFTreeColumn.cpp \ + nsRDFTreeDataModel.cpp \ + nsRDFTreeItem.cpp \ + $(NULL) include $(DEPTH)/config/config.mk