summaryrefslogtreecommitdiffstats
path: root/hl/examples
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2011-04-14 19:45:57 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2011-04-14 19:45:57 (GMT)
commita45c7424b2d849c8876d4681d0815367f6e5c7f6 (patch)
tree6001ce9ed8c8cb0d54137728887ae0cc94f1e306 /hl/examples
parentc62953eb427d3db8f147dd0c618cdb604235b42a (diff)
downloadhdf5-a45c7424b2d849c8876d4681d0815367f6e5c7f6.zip
hdf5-a45c7424b2d849c8876d4681d0815367f6e5c7f6.tar.gz
hdf5-a45c7424b2d849c8876d4681d0815367f6e5c7f6.tar.bz2
[svn-r20502] Purpose:
Add "silent make" mode configure option. Description: Automake 1.11 has a new option available that allows for a silent make mode. This functionality needs to be explicitly enabled in configure.in via the use of the automake macro AM_SILENT_RULES, which is what this commit is adding. This introduces a new configure option: --{en|dis}able-silent-rules This option is on by default, and simplies compile and link line outputs when building the library. Disabling this option will print full "verbose" output (i.e., full compile and linking lines for each target). Tested: This was tested on jam & h5committested
Diffstat (limited to 'hl/examples')
-rw-r--r--hl/examples/Makefile.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/hl/examples/Makefile.in b/hl/examples/Makefile.in
index 2a5c402..e43d27c 100644
--- a/hl/examples/Makefile.in
+++ b/hl/examples/Makefile.in
@@ -68,6 +68,12 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/src/H5config.h
CONFIG_CLEAN_FILES = run-hlc-ex.sh
CONFIG_CLEAN_VPATH_FILES =
+AM_V_GEN = $(am__v_GEN_$(V))
+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
+am__v_GEN_0 = @echo " GEN " $@;
+AM_V_at = $(am__v_at_$(V))
+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
+am__v_at_0 = @
SOURCES =
DIST_SOURCES =
am__tty_colors = \
@@ -84,6 +90,7 @@ AMTAR = @AMTAR@
AM_CFLAGS = @AM_CFLAGS@ @H5_CFLAGS@
AM_CPPFLAGS = @AM_CPPFLAGS@ @H5_CPPFLAGS@
AM_CXXFLAGS = @AM_CXXFLAGS@ @H5_CXXFLAGS@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AM_FCFLAGS = @AM_FCFLAGS@ @H5_FCFLAGS@
AM_LDFLAGS = @AM_LDFLAGS@
AM_MAKEFLAGS = @AM_MAKEFLAGS@