summaryrefslogtreecommitdiffstats
path: root/config/conclude_fc.am
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-08-01 03:51:53 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-08-01 03:51:53 (GMT)
commit4227b8948d7091205b4f8dc1271d7dcae01bb0fb (patch)
tree313fdac807a3670596692905e94aa47b4bcdc5b8 /config/conclude_fc.am
parent438935557e04d6025a389fbe5fccb6290a62c054 (diff)
downloadhdf5-4227b8948d7091205b4f8dc1271d7dcae01bb0fb.zip
hdf5-4227b8948d7091205b4f8dc1271d7dcae01bb0fb.tar.gz
hdf5-4227b8948d7091205b4f8dc1271d7dcae01bb0fb.tar.bz2
Reverts the removal of config/conclude_fc.am while keeping
the changes to config/gnu-fflags.
Diffstat (limited to 'config/conclude_fc.am')
-rw-r--r--config/conclude_fc.am31
1 files changed, 31 insertions, 0 deletions
diff --git a/config/conclude_fc.am b/config/conclude_fc.am
new file mode 100644
index 0000000..15d04a7
--- /dev/null
+++ b/config/conclude_fc.am
@@ -0,0 +1,31 @@
+## 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