summaryrefslogtreecommitdiffstats
path: root/c++/test/Makefile.in
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2003-06-09 17:42:02 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2003-06-09 17:42:02 (GMT)
commit01f726e30521c16f8252c0668f796a9c8aac7a62 (patch)
treed1f1c9bf1fc548dfd21be5c15edbd81580314b1a /c++/test/Makefile.in
parent47f9421dd546b7bc1e1616d3beb6e288ac0e637c (diff)
downloadhdf5-01f726e30521c16f8252c0668f796a9c8aac7a62.zip
hdf5-01f726e30521c16f8252c0668f796a9c8aac7a62.tar.gz
hdf5-01f726e30521c16f8252c0668f796a9c8aac7a62.tar.bz2
[svn-r6997]
Purpose: Code cleanup Description: Moved a utility function out so other tests can use the same function and avoid code duplication. Future utility functions can also benefit from this move. Platforms tested: SunOS 5.7 (arabica) Linux 2.4 (eirene) IRIX 6.5.11 (modi4) HPUX 11.00 (kelgia)
Diffstat (limited to 'c++/test/Makefile.in')
-rw-r--r--c++/test/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index edeb20c..9af1c96 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -37,7 +37,7 @@ 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
+TEST_SRC=dsets.cpp testhdf5.cpp tfile.cpp th5s.cpp h5cpputil.cpp
TEST_OBJ=$(TEST_SRC:.cpp=.lo)
TEST_PROGS=dsets testhdf5
@@ -52,7 +52,7 @@ $(TEST_PROGS): $(LIB) $(LIBHDF5)
testhdf5: $(TEST_OBJ)
@$(LT_LINK_EXE) $(CFLAGS) -o $@ $(TESTHDF5_OBJ) $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS)
-dsets: dsets.lo
- @$(LT_LINK_EXE) $(CFLAGS) -o $@ dsets.lo $(hdf5_builddir)/../test/h5test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS)
+dsets: dsets.lo h5cpputil.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ dsets.lo h5cpputil.lo $(hdf5_builddir)/../test/h5test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS)
@CONCLUDE@