summaryrefslogtreecommitdiffstats
path: root/c++/examples/Makefile.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-12-08 16:15:00 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-12-08 16:15:00 (GMT)
commit4aab9c01dfb21f8aa6ee926ac7f13b9f2a5f7ff6 (patch)
tree4a746e8f631925353ab42686a7f06a75cfcdb38c /c++/examples/Makefile.in
parent7548217cb4d404ea20dea76e8b0aeae799bfda20 (diff)
downloadhdf5-4aab9c01dfb21f8aa6ee926ac7f13b9f2a5f7ff6.zip
hdf5-4aab9c01dfb21f8aa6ee926ac7f13b9f2a5f7ff6.tar.gz
hdf5-4aab9c01dfb21f8aa6ee926ac7f13b9f2a5f7ff6.tar.bz2
[svn-r3097] Purpose:
Add Description: Adding a small amount of testing to the C++ library until "real" testing can be created. (We use the examples). Platforms tested: Linux
Diffstat (limited to 'c++/examples/Makefile.in')
-rw-r--r--c++/examples/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index eb67898..2a928b6 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -27,14 +27,16 @@ TEST_OBJ=$(TEST_SRC:.cpp=.lo)
## These are the programs that `make all' or `make tests' will build and which
## `make check' will run. List them in the order they should be run.
-TEST_PROGS=$(TEST_SRC:.cpp=)
+PROGS=$(TEST_SRC:.cpp=)
+
+TEST_SCRIPTS=testexamples.sh
## These are the files that `make clean' (and derivatives) will remove from
## this directory.
CLEAN=
## How to build the programs... they all depend on the Fortran & C hdf5 libraries
-$(TEST_PROGS): $(LIB) $(LIBHDF5)
+$(PROGS): $(LIB) $(LIBHDF5)
compound: compound.lo
@$(LT_LINK_EXE) $(CXXFLAGS) -o $@ compound.lo $(LDFLAGS) $(LIB) $(LIBS) $(LIBHDF5)