diff options
author | Ludovic Courtès | 2015-03-06 11:32:22 +0100 |
---|---|---|
committer | Ludovic Courtès | 2015-03-06 11:32:22 +0100 |
commit | a22dea4136991992549431050a54313cd303fb3f (patch) | |
tree | eee830aba77638dcc9ae2592dd354906c42ba680 | |
parent | 8e5f21a0a77ac6ca813e093a5df06cb7b304c312 (diff) | |
download | skribilo-a22dea4136991992549431050a54313cd303fb3f.tar.gz skribilo-a22dea4136991992549431050a54313cd303fb3f.tar.lz skribilo-a22dea4136991992549431050a54313cd303fb3f.zip |
build: Enable silent rules by default.
* configure.ac: Invoke 'AM_SILENT_RULES'.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index efb5c49..eaadbd8 100644 --- a/configure.ac +++ b/configure.ac @@ -13,6 +13,9 @@ AC_CONFIG_MACRO_DIR(m4) AM_INIT_AUTOMAKE([1.11 gnu no-define readme-alpha \ color-tests parallel-tests]) +# Enable silent rules by default. +AM_SILENT_RULES([yes]) + AC_CONFIG_SRCDIR([src/guile/skribilo/reader.scm]) # GNU Gettext. |