1
0
mirror of https://git.code.sf.net/p/mingw-w64/mingw-w64 synced 2025-04-18 17:44:18 +03:00
Martin Storsjö 5433028416 crt: Respect automake silent rules
If configuring mingw-w64-crt with the autoconf/automake config
option --enable-silent-rules, the default automake rules will
print e.g. "  CC       misc/lib64_libmsvcrt_extra_a-wctype.o"
when compiling such a file. However, any custom makefile rules
will still be printed as usual.

Respect the --enable-silent-rules flag on our custom rules;
by adding $(AM_V_GEN) on rules, it will print e.g.
"  GEN      lib64/msvcrt.def" instead of the command, if
configured with that flag, or if building with "make V=0".
By adding $(AM_V_at) on rules, that command won't be printed
at all, when building with silent rules.

By enabling silent rules, the output is much less verbose, and
it is easier to spot e.g. compiler warnings.

See [1] for more details on automake silent rules.

[1] https://www.gnu.org/software/automake/manual/html_node/Automake-Silent-Rules.html

Signed-off-by: Martin Storsjö <martin@martin.st>
2025-04-04 16:28:21 +03:00
2010-02-24 17:55:02 +00:00
2013-02-26 20:29:09 +00:00
2010-01-15 20:22:39 +00:00
Description
No description provided
67 MiB
Languages
C 62.8%
C++ 20.7%
Makefile 15.2%
Shell 1%
Yacc 0.1%
Other 0.1%