From 5b442958f8171e367de47d3aaf126804edf41175 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 24 Oct 2000 15:04:25 -0500 Subject: [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 --- fortran/src/Makefile.in | 7 +++++-- 1 file 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=} -- cgit v0.12