Is there a way to have make echo commands that are manually suppressed with @ in the makefile? I can\'t find this in the help or man page, it just says
make
@
I run into this question from time to time using cmake because it hides the command. You can use "make VERBOSE=true" to get them to print out.
The most obvious idea is to change the shell that runs the commands, e.g. add:
SHELL = sh -xv
to your makefile.