diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:33:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:33:45 (GMT) |
commit | 26e94d4eefb59c58fd4691bea289e149b68e6a7f (patch) | |
tree | c0ec9544d65b81711fe6e5655afe6e71d8207ce3 /c++ | |
parent | c1f6f9defd4266e40fde0845c0ca18099be7f50d (diff) | |
download | hdf5-26e94d4eefb59c58fd4691bea289e149b68e6a7f.zip hdf5-26e94d4eefb59c58fd4691bea289e149b68e6a7f.tar.gz hdf5-26e94d4eefb59c58fd4691bea289e149b68e6a7f.tar.bz2 |
[svn-r7293] Purpose:
Code cleanup
Description:
Remove some redundant libtool definitions, etc.
Platforms tested:
h5committested
Diffstat (limited to 'c++')
-rw-r--r-- | c++/test/Makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index fbe8ca3..61ab057 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -33,8 +33,6 @@ CPPFLAGS=-I. -I../src -I$(srcdir)/../src -I$(top_srcdir)/test -I$(hdf5_builddir) LIB=../src/libhdf5_cpp.la LIBHDF5=$(hdf5_builddir)/libhdf5.la -LT_LINK_CXX_LIB=$(LT) --mode=link $(CXX) -static -rpath $(libdir) - ## These are our main targets. They should be listed in the order to be ## executed, generally most specific tests to least specific tests. RUNTEST=$(LT_RUN) @@ -54,9 +52,9 @@ DISTCLEAN=$(TEST_PROGS_SRC:.cpp=.lo) $(TEST_PROGS_SRC:.cpp=.o) $(TEST_PROGS): $(LIB) $(LIBHDF5) testhdf5: $(TEST_OBJ) - @$(LT_LINK_CXX_EXE) -static $(CXXFLAGS) -o $@ $(TESTHDF5_OBJ) $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS) + @$(LT_LINK_CXX_EXE) $(CXXFLAGS) -o $@ $(TESTHDF5_OBJ) $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS) dsets: dsets.lo h5cpputil.lo - @$(LT_LINK_CXX_EXE) -static $(CXXFLAGS) -o $@ dsets.lo h5cpputil.lo $(hdf5_builddir)/../test/h5test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS) + @$(LT_LINK_CXX_EXE) $(CXXFLAGS) -o $@ dsets.lo h5cpputil.lo $(hdf5_builddir)/../test/h5test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) $(DEFAULT_LIBS) @CONCLUDE@ |