Great article! I could have only wished for such fine introductory material when I was starting off with Make. It would be nice if the docs themselves had a similar chapter.
One thing that I've always wanted from Make was a way of writing long commands with less escaping and without continuation characters. Something like heredoc for Make.
For example, the following is just too arcane and I would by all means move the body of the command into a separate file:
One thing that I've always wanted from Make was a way of writing long commands with less escaping and without continuation characters. Something like heredoc for Make.
For example, the following is just too arcane and I would by all means move the body of the command into a separate file:
Assuming there is no interpolation between Make and Bash, why not provide a way of writing the command as naturally as possible: Of course, shell and Make have a lot of conflicting syntax that would make this into a hard problem.