How do I add comments (with echo) in a Makefile so that they\'re printed when ran?
Makefile
Or, since Make just pushes whatever is in a rule to bash, you could just use a pound to have bash treat it as a comment.
Rule: Dependencies # Your Comment Command
Will output
$ make Rule # Your Comment Command