diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-09-02 16:33:12 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-09-02 16:33:12 (GMT) |
commit | 33a2e52c6e0910560058e1ebfd80e6224a6a527e (patch) | |
tree | e4efea126fbc9b5661836ccbf0c9706a184ce019 /fortran/test/Makefile.am | |
parent | 5d311b35baf5a147c44bedf66d387762c88185bd (diff) | |
download | hdf5-33a2e52c6e0910560058e1ebfd80e6224a6a527e.zip hdf5-33a2e52c6e0910560058e1ebfd80e6224a6a527e.tar.gz hdf5-33a2e52c6e0910560058e1ebfd80e6224a6a527e.tar.bz2 |
[svn-r27663] Removed the lines:
# Source files are used for both the library and fortranlib_test.
# Automake will complain about this without the following workaround.
fortranlib_test_FCFLAGS=$(AM_FCFLAGS)
fortranlib_test_CFLAGS=$(AM_CFLAGS)
because they caused Fortran build rules (.f90.o, .F90.o) to be ignored, causing the CPP flags to be passed to the Fortran compiler, causing the xlf compiler to fail.
Tested: ostrich (xlf), h5committest
Diffstat (limited to 'fortran/test/Makefile.am')
-rw-r--r-- | fortran/test/Makefile.am | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fortran/test/Makefile.am b/fortran/test/Makefile.am index c12233c..60f9f53 100644 --- a/fortran/test/Makefile.am +++ b/fortran/test/Makefile.am @@ -43,11 +43,6 @@ check_PROGRAMS=$(TEST_PROG) libh5test_fortran_la_SOURCES = tf_gen.F90 tf.F90 t.c -# Source files are used for both the library and fortranlib_test. -# Automake will complain about this without the following workaround. -fortranlib_test_FCFLAGS=$(AM_FCFLAGS) -fortranlib_test_CFLAGS=$(AM_CFLAGS) - fortranlib_test_SOURCES = tH5F.F90 tH5D.F90 tH5R.F90 tH5S.F90 tH5T.F90 tH5VL.F90 tH5Z.F90 \ tH5Sselect.F90 tH5P.F90 tH5A.F90 tH5I.F90 tH5G.F90 tH5E.F90 tHDF5.F90 fortranlib_test.F90 |