This would be my #1 request for a make 'new-feature' :
o provide a way of disabling silent rules / make recipe
lines starting with '@' or listed in '.SILENT:' be
echoed normally - ie. a
'--disable-silent-rules' command line option to make .
Is there any hope of make ever provid
Try running "make -s .SHELLFLAGS=-xc ...". Assuming you have a new enough
make (4.x?) this should turn off make verbosity and turn on shell verbosity
resulting in full echoing. As an advanced topic you can implement V=[123]
verbosity levels by setting .SHELLFLAGS as a target-specific variable.
Thi