diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-14 18:33:11 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-14 18:33:11 (GMT) |
commit | 29d2bf06bfd43ee2d3b303d641921fd13b68c330 (patch) | |
tree | ccda47aa5fa43ee6032d0959c6ecc102783d7c99 /c++ | |
parent | 6e160fa1e56c4025a5dd9535a836b24a629a2caa (diff) | |
download | hdf5-29d2bf06bfd43ee2d3b303d641921fd13b68c330.zip hdf5-29d2bf06bfd43ee2d3b303d641921fd13b68c330.tar.gz hdf5-29d2bf06bfd43ee2d3b303d641921fd13b68c330.tar.bz2 |
[svn-r3631] Purpose:
Update
Description:
Added the th5s test.
Platforms tested:
Linux
Diffstat (limited to 'c++')
-rw-r--r-- | c++/test/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index c63a581..bc3aa8a 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -30,7 +30,8 @@ LIBHDF5=$(hdf5_builddir)/libhdf5.la ## executed, generally most specific tests to least specific tests. RUNTEST=$(LT_RUN) -TEST_SRC=dsets.cpp testhdf5.cpp tfile.cpp +TEST_PROG_SRCS=dsets.cpp testhdf5.cpp +TEST_SRC=tfile.cpp th5s.cpp TEST_OBJ=$(TEST_SRC:.cpp=.lo) TEST_PROGS=dsets testhdf5 @@ -41,7 +42,7 @@ DISTCLEAN=$(TEST_PROGS_SRC:.cpp=.lo) $(TEST_PROGS_SRC:.cpp=.o) *.h5 $(TEST_PROGS): $(LIB) $(LIBHDF5) testhdf5: $(TEST_OBJ) - @$(LT_LINK_EXE) $(CFLAGS) -o $@ testhdf5.lo tfile.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @$(LT_LINK_EXE) $(CFLAGS) -o $@ testhdf5.lo $(TEST_OBJ) $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) dsets: dsets.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ dsets.lo $(hdf5_builddir)/../test/h5test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) |