summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-10-24 20:04:25 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-10-24 20:04:25 (GMT)
commit5b442958f8171e367de47d3aaf126804edf41175 (patch)
tree0cf574984f5b0776bbf324c2c8f9b045ab2ffa03 /fortran
parent81ca5616ba1a6b71311e1446e7b89a58b4285de0 (diff)
downloadhdf5-5b442958f8171e367de47d3aaf126804edf41175.zip
hdf5-5b442958f8171e367de47d3aaf126804edf41175.tar.gz
hdf5-5b442958f8171e367de47d3aaf126804edf41175.tar.bz2
[svn-r2728] Purpose:
Bug Fix Description: Getting messages while compiling the || fortran stuff that it didn't have a rule to make "H5Pf_parallel.c". Solution: The quotes were confusing it. I placed the text in another macro to fix this. Platforms tested: Modi4
Diffstat (limited to 'fortran')
-rw-r--r--fortran/src/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in
index f2904ad..c0290de 100644
--- a/fortran/src/Makefile.in
+++ b/fortran/src/Makefile.in
@@ -22,12 +22,15 @@ LIB=libhdf5_fortran.la
DISTCLEAN=H5fortran_types.f90
## Source and object files for the library
+CPAR_SRC=H5Pf_parallel.c
+FPAR_SRC=H5Pff_parallel.f90 HDF5_parallel.f90
+
ADD_PARALLEL_FILES=@ADD_PARALLEL_FILES@
-CPARALLEL=${ADD_PARALLEL_FILES:yes="H5Pf_parallel.c"}
+CPARALLEL=${ADD_PARALLEL_FILES:yes=$(CPAR_SRC)}
CLIB_SRC=H5f90kit.c H5f90misc.c H5Git.c H5Rf.c H5Ff.c H5Sf.c H5Df.c H5Gf.c \
H5Af.c H5Tf.c H5Pf.c H5If.c H5Ef.c ${CPARALLEL:no=}
-FPARALLEL=${ADD_PARALLEL_FILES:yes="H5Pff_parallel.f90 HDF5_parallel.f90"}
+FPARALLEL=${ADD_PARALLEL_FILES:yes=$(FPAR_SRC)}
FLIB_SRC=H5fortran_types.f90 H5fortran_flags.f90 H5f90global.f90 H5f90miscf.f90 \
H5Rff.f90 H5Fff.f90 H5Sff.f90 H5Dff.f90 H5Gff.f90 H5Aff.f90 H5Tff.f90 \
H5Pff.f90 H5Iff.f90 H5Eff.f90 HDF5.f90 ${FPARALLEL:no=}