From 8ce26901ac6d431fdfe2c20d0cbd70d025c469e8 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 15 Mar 2001 14:18:38 -0500 Subject: [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 --- c++/test/Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- cgit v0.12