diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-04-22 09:40:38 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-04-22 09:40:38 +0200 |
commit | 5a35b97ee724c641aa3bebb87a0e6851186f5c1d (patch) | |
tree | 8ffa6c12814db5c138109b526d2f7975a9f44368 /configure.ac | |
parent | 1d9319bf7df892accc27c6c304d7b2bbb213c9af (diff) |
Build: Fix silent builds
* configure.ac: Pass yes to AM_SILENT_RULES, thus enabling silent builds.
* docs/reference/Doxyfile.in: Set QUIET=YES.
Update for doxygen 1.8.11 (not necessary for silent builds).
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b1e63ca..92e6bc0 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,9 @@ AC_CONFIG_MACRO_DIR([build]) AC_CONFIG_HEADERS([build/config.h cairommconfig.h]) AM_INIT_AUTOMAKE([1.10 -Wno-portability no-define nostdinc tar-pax]) -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) +# Support silent build rules. +# Disable by either passing --disable-silent-rules to configure or passing V=1 to make. +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_MAINTAINER_MODE AC_ARG_VAR([ACLOCAL_FLAGS], [aclocal flags, e.g. -I <macro dir>]) |