Commit b608f770 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

configure: Define AM_SILENT_RULES.

This enables Linux kernel-style silent build output.

If you want a more verbose output use 'make V=1' or './configure --disable-silent-rules'

If you want even less verbosity for custom command, there is $(AM_V_GEN) that you can add in front of your custom command.
parent 6e4c75d0
...@@ -25,6 +25,10 @@ AC_CANONICAL_HOST ...@@ -25,6 +25,10 @@ AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(tar-ustar) AM_INIT_AUTOMAKE(tar-ustar)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
# Disable with "./configure --disable-silent-rules" or "make V=1"
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl Too many people are not aware of maintainer mode: dnl Too many people are not aware of maintainer mode:
dnl If you want to use it, you definitely know what you are doing, so dnl If you want to use it, you definitely know what you are doing, so
dnl you can specify "--disable-maintainer-mode". But if you want the default dnl you can specify "--disable-maintainer-mode". But if you want the default
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment