diff options
author | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2016-09-26 16:49:06 (GMT) |
---|---|---|
committer | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2016-09-26 16:49:06 (GMT) |
commit | 7e5fcd3a4a4f4949505b47d48d0292e944b3e670 (patch) | |
tree | 1e980f07a0539e4027c1303d95fbce57f1d10585 /fortran/src | |
parent | c06993b5b78b5f2594e58d1d3acd16017916acae (diff) | |
download | hdf5-7e5fcd3a4a4f4949505b47d48d0292e944b3e670.zip hdf5-7e5fcd3a4a4f4949505b47d48d0292e944b3e670.tar.gz hdf5-7e5fcd3a4a4f4949505b47d48d0292e944b3e670.tar.bz2 |
Added rule to build buildiface program, without a rule, build would add repeated compile options when using the NAG compiler.
Diffstat (limited to 'fortran/src')
-rw-r--r-- | fortran/src/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fortran/src/Makefile.am b/fortran/src/Makefile.am index a271666..bbdae2f 100644 --- a/fortran/src/Makefile.am +++ b/fortran/src/Makefile.am @@ -138,6 +138,9 @@ H5_buildiface_SOURCES = H5_buildiface.F90 # Mark this directory as part of the Fortran API FORTRAN_API=yes +H5_buildiface$(EXEEXT): $(H5_buildiface_SOURCES) H5config_f.inc + $(FC) $(FCFLAGS) $< -o $@ -I. + # Hardcode the dependencies of these files. There isn't a known way of # determining this automagically (like we do with the C files). So, when # doing a parallel make, some modules could be made way before the |