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 /fortran | |
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 'fortran')
-rw-r--r-- | fortran/test/Makefile.in | 7 | ||||
-rw-r--r-- | fortran/testpar/Makefile.in | 3 |
2 files changed, 4 insertions, 6 deletions
diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in index 811aaaa..b60d7de 100644 --- a/fortran/test/Makefile.in +++ b/fortran/test/Makefile.in @@ -26,7 +26,6 @@ CPPFLAGS=-I. -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@ ## Add include directory to the C preprocessor flags and the h5test and hdf5 ## libraries to the library list. -LT_LINK_FLIB=$(LT) --mode=link $(F9X) -static -rpath $(libdir) FLIB=../src/libhdf5_fortran.la HDF5LIB=$(hdf5_builddir)/libhdf5.la TCLIB=../../test/.libs/libh5test.a @@ -53,12 +52,12 @@ MOSTLYCLEAN=*.h5 *.tmp $(TEST_PROGS): $(LIB) $(FLIB) fortranlib_test: $(FORTLIBTEST_OBJ) - @$(LT_LINK_FEXE) -static $(FFLAGS) -o $@ $(FORTLIBTEST_OBJ) $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB) + @$(LT_LINK_FEXE) $(FFLAGS) -o $@ $(FORTLIBTEST_OBJ) $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB) fflush1: fflush1.lo - @$(LT_LINK_FEXE) -static $(FFLAGS) -o $@ fflush1.lo $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB) + @$(LT_LINK_FEXE) $(FFLAGS) -o $@ fflush1.lo $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB) fflush2: fflush2.lo - @$(LT_LINK_FEXE) -static $(FFLAGS) -o $@ fflush2.lo $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB) + @$(LT_LINK_FEXE) $(FFLAGS) -o $@ fflush2.lo $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB) @CONCLUDE@ diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in index 4397c0d..ea8d31b 100644 --- a/fortran/testpar/Makefile.in +++ b/fortran/testpar/Makefile.in @@ -24,7 +24,6 @@ hdf5_builddir=$(top_builddir)/src ## Add the include directory to the C preprocessor flags the the hdf5 library ## to the library list. -LT_LINK_LIB=$(LT) --mode=link $(F9X) -static -rpath $(libdir) LIBFORTRAN=../src/libhdf5_fortran.la LIBHDF5=$(hdf5_builddir)/libhdf5.la FTLIB=../test/libh5test_fortran.la @@ -58,6 +57,6 @@ thyperslab_wr.lo: $(srcdir)/thyperslab_wr.f90 thdf5.lo ptesthdf5_fortran.lo: $(srcdir)/ptesthdf5_fortran.f90 thdf5.lo ptesthdf5_fortran: thdf5.lo thyperslab_wr.lo ptesthdf5_fortran.lo - @$(LT_LINK_FEXE) -static $(FFLAGS) -o $@ ptesthdf5_fortran.lo thdf5.lo thyperslab_wr.lo $(FTLIB) $(CTLIB) $(LIBFORTRAN) $(LIBHDF5) $(LIBS) + @$(LT_LINK_FEXE) $(FFLAGS) -o $@ ptesthdf5_fortran.lo thdf5.lo thyperslab_wr.lo $(FTLIB) $(CTLIB) $(LIBFORTRAN) $(LIBHDF5) $(LIBS) @CONCLUDE@ |