diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-11 17:44:40 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-11 17:44:40 (GMT) |
commit | d1e73b09091a18a9872cd9e4ffea35fbf3bbe20b (patch) | |
tree | 529149e53d980ad24c908f1dab69f3d5acc24aaf /fortran/src | |
parent | 714b3018f34fbaa75de9395418a6354debe12f76 (diff) | |
download | hdf5-d1e73b09091a18a9872cd9e4ffea35fbf3bbe20b.zip hdf5-d1e73b09091a18a9872cd9e4ffea35fbf3bbe20b.tar.gz hdf5-d1e73b09091a18a9872cd9e4ffea35fbf3bbe20b.tar.bz2 |
[svn-r2669] Purpose:
Bug Fix
Description:
I was relying on the PARALLEL macro to be "yes" or "no" all the
time. This isn't the case.
Solution:
Created the ADD_PARALLEL_FILES macro to do just this.
Platforms tested:
Modi4
Diffstat (limited to 'fortran/src')
-rw-r--r-- | fortran/src/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index b723933..cf6ee29 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -22,11 +22,12 @@ LIB=libhdf5_fortran.la CLEAN=H5fortran_types.f90 ## Source and object files for the library -CPARALLEL=${PARALLEL:yes="H5Pf_parallel.c"} +ADD_PARALLEL_FILES=@ADD_PARALLEL_FILES@ +CPARALLEL=${ADD_PARALLEL_FILES:yes="H5Pf_parallel.c"} 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=${PARALLEL:yes="H5Pff_parallel.f90 HDF5_parallel.f90"} +FPARALLEL=${ADD_PARALLEL_FILES:yes="H5Pff_parallel.f90 HDF5_parallel.f90"} 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=} |