diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-06-10 13:10:20 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-06-10 13:10:20 (GMT) |
commit | bec5a9ba642bd6832c4a96a904eccd065f83c3b7 (patch) | |
tree | 7fd6e1b93fee69519b6d15c2a69321e2fb71252b /c++ | |
parent | ee38b91d18e8152662597b6ff605c23cde172e65 (diff) | |
download | hdf5-bec5a9ba642bd6832c4a96a904eccd065f83c3b7.zip hdf5-bec5a9ba642bd6832c4a96a904eccd065f83c3b7.tar.gz hdf5-bec5a9ba642bd6832c4a96a904eccd065f83c3b7.tar.bz2 |
[svn-r7013] Purpose:
Bug fix
Description:
Corrected an omission of a module needed by the testhdf5 program.
Platforms tested:
Only in modi4 as the change is small.
Misc. update:
Diffstat (limited to 'c++')
-rw-r--r-- | c++/test/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index 9af1c96..8c4fcf0 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -37,11 +37,13 @@ LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir) ## executed, generally most specific tests to least specific tests. RUNTEST=$(LT_RUN) -TEST_SRC=dsets.cpp testhdf5.cpp tfile.cpp th5s.cpp h5cpputil.cpp +TESTHDF5_SRC=testhdf5.cpp tfile.cpp th5s.cpp h5cpputil.cpp +TESTHDF5_OBJ=$(TESTHDF5_SRC:.cpp=.lo) + +TEST_SRC=dsets.cpp $(TESTHDF5_SRC) TEST_OBJ=$(TEST_SRC:.cpp=.lo) TEST_PROGS=dsets testhdf5 -TESTHDF5_OBJ=testhdf5.lo tfile.lo th5s.lo TEST_SCRIPTS= |