summaryrefslogtreecommitdiffstats
path: root/c++/test
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-14 23:15:12 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-14 23:15:12 (GMT)
commitbe035551d36fdbcf0d717e8288e7950e4cb2e580 (patch)
tree00a8345e68579caea9b4d6ecfba27ac519667412 /c++/test
parent6ff7489679f1851d7146858deda6a6b8d311a2c7 (diff)
downloadhdf5-be035551d36fdbcf0d717e8288e7950e4cb2e580.zip
hdf5-be035551d36fdbcf0d717e8288e7950e4cb2e580.tar.gz
hdf5-be035551d36fdbcf0d717e8288e7950e4cb2e580.tar.bz2
[svn-r2901] Purpose:
Adding Makefile
Diffstat (limited to 'c++/test')
-rw-r--r--c++/test/Makefile.in31
1 files changed, 31 insertions, 0 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
new file mode 100644
index 0000000..3eb60a7
--- /dev/null
+++ b/c++/test/Makefile.in
@@ -0,0 +1,31 @@
+## HDF5-C++ test/Makefile(.in)
+##
+## Copyright (C) 2000 National Center for Supercomputing Applications.
+## All rights reserved.
+##
+##
+top_srcdir=@top_srcdir@
+top_builddir=../..
+srcdir=@srcdir@
+@COMMENCE@
+
+hdf5_builddir=$(top_builddir)/src
+
+## Add include directory to the C preprocessor flags and the h5test and hdf5
+## libraries to the library list.
+LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir)
+LIB=../src/hdf5_cpp.la
+HDF5LIB=$(hdf5_builddir)/libhdf5.la
+
+TEST_PROGS_SRC=
+TEST_PROGS=
+
+TEST_SRC=
+TEST_OBJ=$(TEST_SRC:.C=.lo)
+
+DISTCLEAN=$(TEST_PROGS_SRC:.C=.lo) $(TEST_PROGS_SRC:.C=.o) *.h5
+
+$(TEST_PROGS): $(LIB)
+ @echo No C++ test as of yet.
+
+@CONCLUDE@