Is there any way for "make" to echo commands
makefile
Solution
- The most obvious idea is to change the shell that runs the commands, e.g. modify your makefile and add to the top `SHELL = sh -xv`.
- Another solution is to change how you call make to `make SHELL='sh -xv'`
- Lastly if your Makefile is generated by `cmake` then call `make` with `make VERBOSE=1`
Problem
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 "--quiet" to do the opposite.