diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2019-08-01 15:22:28 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2019-08-01 15:22:28 (GMT) |
commit | ff8d8a9edb3b8012fa02d2b9fa3c823fee7575fa (patch) | |
tree | e413ff2b220360607fe5fe68d633c893d8bf14dd /config/conclude_fc.am | |
parent | 0c374d65c65e1c559efe7f81a4620af2d3676f07 (diff) | |
parent | bb8904a75e68c925162e77169a47d4eb2ac00bd3 (diff) | |
download | hdf5-ff8d8a9edb3b8012fa02d2b9fa3c823fee7575fa.zip hdf5-ff8d8a9edb3b8012fa02d2b9fa3c823fee7575fa.tar.gz hdf5-ff8d8a9edb3b8012fa02d2b9fa3c823fee7575fa.tar.bz2 |
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~lrknox/hdf5_lrk into develop
Diffstat (limited to 'config/conclude_fc.am')
-rw-r--r-- | config/conclude_fc.am | 31 |
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 |