From 5d6f14092f5b3768ba1c8b80e4075d4ff61fd983 Mon Sep 17 00:00:00 2001 From: "mcafee%netscape.com" Date: Fri, 22 Jan 1999 11:47:39 +0000 Subject: [PATCH] Breathing Unix life into the rdf tests --- rdf/tests/Makefile.in | 29 ++++++++++++++++++++++++++ rdf/tests/localfile/Makefile.in | 37 +++++++++++++++++++++++++++++++++ rdf/tests/rdfsink/Makefile.in | 37 +++++++++++++++++++++++++++++++++ 3 files changed, 103 insertions(+) create mode 100644 rdf/tests/Makefile.in create mode 100644 rdf/tests/localfile/Makefile.in create mode 100644 rdf/tests/rdfsink/Makefile.in diff --git a/rdf/tests/Makefile.in b/rdf/tests/Makefile.in new file mode 100644 index 000000000000..dc9a0211a85f --- /dev/null +++ b/rdf/tests/Makefile.in @@ -0,0 +1,29 @@ +#!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 = ../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +DIRS = localfile rdfsink + +include $(topsrcdir)/config/config.mk + +include $(topsrcdir)/config/rules.mk diff --git a/rdf/tests/localfile/Makefile.in b/rdf/tests/localfile/Makefile.in new file mode 100644 index 000000000000..f83b75173b04 --- /dev/null +++ b/rdf/tests/localfile/Makefile.in @@ -0,0 +1,37 @@ +#!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 = ../../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +CPPSRCS = localfile.cpp + +LOCAL_INCLUDES = -I/usr/include/sys + +REQUIRES = + +LIBS = \ + $(NSPR_LIBS) \ + $(NULL) + +PROGRAM = localfile + +include $(topsrcdir)/config/rules.mk diff --git a/rdf/tests/rdfsink/Makefile.in b/rdf/tests/rdfsink/Makefile.in new file mode 100644 index 000000000000..82b03cab03c0 --- /dev/null +++ b/rdf/tests/rdfsink/Makefile.in @@ -0,0 +1,37 @@ +#!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 = ../../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +CPPSRCS = rdfsink.cpp + +LOCAL_INCLUDES = -I/usr/include/sys + +REQUIRES = + +LIBS = \ + $(NSPR_LIBS) \ + $(NULL) + +PROGRAM = rdfsink + +include $(topsrcdir)/config/rules.mk