diff options
author | Josh Stone <jistone@redhat.com> | 2009-10-22 14:37:05 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-10-22 14:37:05 -0700 |
commit | 618a8a634b37da88b67a49beec7282634bff3efe (patch) | |
tree | a523e413dc27093d93ca33ad70444b677f9c266f /doc/Makefile.in | |
parent | 712d12ca4c74b824e7afbb273c0975eb0a30847c (diff) | |
download | systemtap-steved-618a8a634b37da88b67a49beec7282634bff3efe.tar.gz systemtap-steved-618a8a634b37da88b67a49beec7282634bff3efe.tar.xz systemtap-steved-618a8a634b37da88b67a49beec7282634bff3efe.zip |
Enable Kbuild-like quiet builds
This enables much cleaner build output from automake. To re-enable the
verbose commands, pass --disable-silent-rules to configure, or use V=1
at make time.
* configure.ac: Enable AM_SILENT_RULES by default.
Diffstat (limited to 'doc/Makefile.in')
-rw-r--r-- | doc/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index e91516e0..793abea2 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -43,6 +43,12 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = 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 = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ @@ -88,6 +94,7 @@ am__relativize = \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ |