summaryrefslogtreecommitdiffstats
path: root/config/conclude_fc.am
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-07-29 21:13:24 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-07-29 21:13:24 (GMT)
commitd169391529f253a9903b8e6cacf38c59ceefab07 (patch)
treef8cb20ad68db5a9c8448bf6d0442e5ad4766a71d /config/conclude_fc.am
parentf97e11e7635a0cd8728d4604ca5dceb3925ba44c (diff)
parent7d291d059da6287f769951c4854c566da0b93ce8 (diff)
downloadhdf5-d169391529f253a9903b8e6cacf38c59ceefab07.zip
hdf5-d169391529f253a9903b8e6cacf38c59ceefab07.tar.gz
hdf5-d169391529f253a9903b8e6cacf38c59ceefab07.tar.bz2
Merge pull request #1808 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:gnu-flags-work to develop
* commit '7d291d059da6287f769951c4854c566da0b93ce8': Parallel Fortran tests now use the MPI module instead of including mpif.h. First stab at gfortran versions. Tested on gfortran 7-9 so far. Moved the -std=f2008 option to gfortran 9 for now. Updated gfortran options. * Removed conclude_fc.am, which was causing verbose builds. Need to investigate more, though. * Added gfortran 9 warnings and flags. This will need to be separated into other version blocks based on when the options first appeared. * The standard is now explicitly set at 2008.
Diffstat (limited to 'config/conclude_fc.am')
-rw-r--r--config/conclude_fc.am31
1 files changed, 0 insertions, 31 deletions
diff --git a/config/conclude_fc.am b/config/conclude_fc.am
deleted file mode 100644
index 15d04a7..0000000
--- a/config/conclude_fc.am
+++ /dev/null
@@ -1,31 +0,0 @@
-## config/conclude_fc.am
-## (Use double hashes for copyright notice so that automake treats it as
-## comments and does not pass it to Makefile.in)
-## Copyright by The HDF Group.
-## Copyright by the Board of Trustees of the University of Illinois.
-## All rights reserved.
-##
-## This file is part of HDF5. The full HDF5 copyright notice, including
-## terms governing use, modification, and redistribution, is contained in
-## the COPYING file, which can be found at the root of the source code
-## distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
-## If you do not have access to either file, you may request a copy from
-## help@hdfgroup.org.
-
-
-## Textually included at the end of the Fortran HDF5 Makefiles.am.
-
-# Makefile.am include fragment with Fortran helper rules and macros.
-
-# AM_FCCPPFLAGS, FCCPPFLAGS are currently not used.
-
-PPFCCOMPILE = $(FC) $(FCDEFS) $(DEFAULT_INCLUDES) $(FCINCLUDES) $(AM_FCCPPFLAGS) $(FCCPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
-LTPPFCCOMPILE = $(LIBTOOL) --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE)
-
-# Treat all .f90 and .F90 files as preprocessed Fortran.
-.f90.o:
- $(PPFCCOMPILE) -c -o $@ $<
-.F90.o:
- $(PPFCCOMPILE) -c -o $@ $<
-
-include $(top_srcdir)/config/conclude.am