diff --git a/rdf/Makefile b/rdf/Makefile index 692129efc9d..e69de29bb2d 100644 --- a/rdf/Makefile +++ b/rdf/Makefile @@ -1,9 +0,0 @@ -#! gmake - -DEPTH = ../.. - -DIRS = include src - -INCLUDE = $(INCLUDE) -I$(DEPTH)/modules/libimg/public - -include $(DEPTH)/config/rules.mk diff --git a/rdf/include/Makefile b/rdf/include/Makefile new file mode 100644 index 00000000000..e7daa8c2496 --- /dev/null +++ b/rdf/include/Makefile @@ -0,0 +1,36 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public License +# Version 1.0 (the "NPL"); you may not use this file except in +# compliance with the NPL. You may obtain a copy of the NPL at +# http://www.mozilla.org/NPL/ +# +# Software distributed under the NPL is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL +# for the specific language governing rights and limitations under the +# NPL. +# +# The Initial Developer of this code under the NPL is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All Rights +# Reserved. + +# +# +# + +MODULE = rdf +DEPTH = ../.. +EXPORTS = \ + rdf.h \ + htrdf.h \ + vocab.h \ + jsec2rdf.h \ + nsIRDFService.h \ + nsIRDFDataSource.h \ + nsIRDFDataBase.h \ + nsIRDFCursor.h \ + nsIRDFObserver.h \ + $(NULL) + +include $(DEPTH)/config/rules.mk diff --git a/rdf/src/Makefile b/rdf/src/Makefile new file mode 100644 index 00000000000..e201a4b4465 --- /dev/null +++ b/rdf/src/Makefile @@ -0,0 +1,46 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public License +# Version 1.0 (the "NPL"); you may not use this file except in +# compliance with the NPL. You may obtain a copy of the NPL at +# http://www.mozilla.org/NPL/ +# +# Software distributed under the NPL is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL +# for the specific language governing rights and limitations under the +# NPL. +# +# The Initial Developer of this code under the NPL is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All Rights +# Reserved. + +# +# +# + +DEPTH = ../.. +MODULE = rdf +LIBRARY_NAME = rdf + + +REQUIRES = nspr xpcom netlib raptor + +CSRCS = \ + vocab.c \ + core.c \ + remstore.c \ + utils.c \ + rdfparse.c \ + bmk2mcf.c \ + rdfht.c \ + columns.c \ + ht.c \ + $(NULL) + +include $(DEPTH)/config/config.mk + +TARGET = $(LIBRARY) + +include $(DEPTH)/config/rules.mk +