diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-08-22 15:21:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 15:21:06 (GMT) |
commit | f24dff5157641669c309e92dc8961e0ffd2d0057 (patch) | |
tree | 511f3854776810b2bd95237a48ca0d0d9ebdc1fa | |
parent | 3015e3d7ab1c7b48aa1514fe02683f032229a655 (diff) | |
download | hdf5-f24dff5157641669c309e92dc8961e0ffd2d0057.zip hdf5-f24dff5157641669c309e92dc8961e0ffd2d0057.tar.gz hdf5-f24dff5157641669c309e92dc8961e0ffd2d0057.tar.bz2 |
Quiets Fortran Autotools builds (#2052)
-rw-r--r-- | config/conclude_fc.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/conclude_fc.am b/config/conclude_fc.am index 26f9232..c8b1084 100644 --- a/config/conclude_fc.am +++ b/config/conclude_fc.am @@ -20,12 +20,14 @@ # 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) +LTPPFCCOMPILE = $(LIBTOOL) --silent --tag=FC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(PPFCCOMPILE) # Treat all .f90 and .F90 files as preprocessed Fortran. .f90.o: + @if $(AM_V_P); then set -x; else echo " PPFC $@"; fi; \ $(PPFCCOMPILE) -c -o $@ $< .F90.o: + @if $(AM_V_P); then set -x; else echo " PPFC $@"; fi; \ $(PPFCCOMPILE) -c -o $@ $< include $(top_srcdir)/config/conclude.am |