mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2025-04-18 17:44:18 +03:00
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>
Description
No description provided
Languages
C
62.8%
C++
20.7%
Makefile
15.2%
Shell
1%
Yacc
0.1%
Other
0.1%