diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-15 19:18:38 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-15 19:18:38 (GMT) |
commit | 8ce26901ac6d431fdfe2c20d0cbd70d025c469e8 (patch) | |
tree | 1c19620f1df04a1bff9f3475253d2d7449b620c1 /c++ | |
parent | aa99c5d5a55d7ecb235e2ed3d75e4a2cf84c8dc8 (diff) | |
download | hdf5-8ce26901ac6d431fdfe2c20d0cbd70d025c469e8.zip hdf5-8ce26901ac6d431fdfe2c20d0cbd70d025c469e8.tar.gz hdf5-8ce26901ac6d431fdfe2c20d0cbd70d025c469e8.tar.bz2 |
[svn-r3646] Purpose:
Bug Fix
Description:
Some of the modules weren't being compiled cause they weren't added
to the TEST_OBJ macro.
Solution:
Added them to the TEST_OBJ macro a la the C tests.
Platforms tested:
Linux
Diffstat (limited to 'c++')
-rw-r--r-- | c++/test/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index 78d8fc7..f0bc1bd 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -34,6 +34,8 @@ TEST_SRC=dsets.cpp testhdf5.cpp tfile.cpp th5s.cpp TEST_OBJ=$(TEST_SRC:.cpp=.lo) TEST_PROGS=dsets testhdf5 +TESTHDF5_OBJ=testhdf5.lo tfile.lo th5s.lo + TEST_SCRIPTS= DISTCLEAN=$(TEST_PROGS_SRC:.cpp=.lo) $(TEST_PROGS_SRC:.cpp=.o) *.h5 @@ -41,7 +43,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 th5s.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @$(LT_LINK_EXE) $(CFLAGS) -o $@ $(TESTHDF5_OBJ) $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) dsets: dsets.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ dsets.lo $(hdf5_builddir)/../test/h5test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) |