summaryrefslogtreecommitdiffstats
path: root/fortran/src/Makefile.in
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2001-04-29 01:08:16 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2001-04-29 01:08:16 (GMT)
commit6ff2e7b303b0479bba8c4709a1fcac61fbdf9f2b (patch)
treed652324fca55cc851875f042bc7320ce5604f7d1 /fortran/src/Makefile.in
parent2c8b1571d25f20cf8d00f346851ce3660364c149 (diff)
downloadhdf5-6ff2e7b303b0479bba8c4709a1fcac61fbdf9f2b.zip
hdf5-6ff2e7b303b0479bba8c4709a1fcac61fbdf9f2b.tar.gz
hdf5-6ff2e7b303b0479bba8c4709a1fcac61fbdf9f2b.tar.bz2
[svn-r3872]
Purpose: Windows port Description: Names of the H5f.c and H5ff.f90 files caused problems on Windows98. Compilation of H5F.c (C Library) and H5Ff.f90 (Fortran library) as compilation of H5f.c and H5ff.f90 creates the same H5F.o and H5FF.o file names and linking stage fails. Solution: Rename the files to H5_f.c and H5_ff.f90 Platforms tested: Linux (eirene) and Windows98
Diffstat (limited to 'fortran/src/Makefile.in')
-rw-r--r--fortran/src/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in
index e37cd08..810c00f 100644
--- a/fortran/src/Makefile.in
+++ b/fortran/src/Makefile.in
@@ -27,11 +27,11 @@ ADD_PARALLEL_FILES=@ADD_PARALLEL_FILES@
FPAR_MOD=${ADD_PARALLEL_FILES:yes=HDF5mpio.f90}
CPARALLEL=${ADD_PARALLEL_FILES:yes=H5FDmpiof.c}
-CLIB_SRC=H5f90kit.c H5f.c H5Git.c H5Rf.c H5Ff.c H5Sf.c H5Df.c H5Gf.c \
+CLIB_SRC=H5f90kit.c H5_f.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=H5FDmpioff.f90}
-FLIB_SRC=H5fortran_types.f90 H5fortran_flags.f90 H5f90global.f90 H5ff.f90 \
+FLIB_SRC=H5fortran_types.f90 H5fortran_flags.f90 H5f90global.f90 H5_ff.f90 \
H5Rff.f90 H5Fff.f90 H5Sff.f90 H5Dff.f90 H5Gff.f90 H5Aff.f90 H5Tff.f90 \
H5Pff.f90 H5Iff.f90 H5Eff.f90 ${FPARALLEL:no=} ${FPAR_MOD:no=HDF5.f90}