How do I add comments (with echo) in a Makefile so that they\'re printed when ran?
Makefile
You should use
target: @echo "Building!"
Note the @, which tells Make not to display the command itself. Without this the output would look like:
@
echo "Building!" Building!