please, provide a way to disable non-echoing of '@'-prefixed recipe lines!

2018-03-27 Thread Jason Vas Dias
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

Re: please, provide a way to disable non-echoing of '@'-prefixed recipe lines!

2018-03-27 Thread David Boyce
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