summaryrefslogtreecommitdiffstats
path: root/fortran/testpar
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-07-11 19:17:48 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-07-11 19:17:48 (GMT)
commit4b218c6a58dade580bbe876bec1ed49d1ede1c55 (patch)
treeb9e715f3873d625284c25cbad1ba069bf455bb69 /fortran/testpar
parentaeaeb90a231b0c2334d3dd3bb206d0aea41a0c0d (diff)
downloadhdf5-4b218c6a58dade580bbe876bec1ed49d1ede1c55.zip
hdf5-4b218c6a58dade580bbe876bec1ed49d1ede1c55.tar.gz
hdf5-4b218c6a58dade580bbe876bec1ed49d1ede1c55.tar.bz2
[svn-r4189]
Purpose: Bug Fix Description: the ptesthdf5_fortran.f90 program was dependent upon the THDF5 module. But before the ptesthdf5_fortran.lo file is build, the THDF5 module needs to be built. Solution: Put that dependency into the Makefile.
Diffstat (limited to 'fortran/testpar')
-rw-r--r--fortran/testpar/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in
index f0c1a94..4f5de0e 100644
--- a/fortran/testpar/Makefile.in
+++ b/fortran/testpar/Makefile.in
@@ -41,7 +41,8 @@ $(TEST_OBJ): $(TEST_HDR)
## Put in dependencies to the THDF5 module so that things will be built
## in the correct order.
-thyperslab_wr.lo: $(srcdir)/thyperslab_wr.f90 thdf5.lo
+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 tcheck.lo ptesthdf5_fortran.lo
@$(LT_LINK_FEXE) $(FFLAGS) -o $@ ptesthdf5_fortran.lo thdf5.lo thyperslab_wr.lo tcheck.lo $(LIBFORTRAN) $(LIBHDF5) $(LIBS)