Assume you have a makefile of the form
<line n content> \
<line n+1 content> \
<line n+2 content> \
<line n+3 content>
and you would like the shell to receive
<line n content> <line n+2 content> <line n+3 content>
(note: <line n+1 content is missing in the desired output!)
How do you correctly (if possible) comment <line n+1 content> \
?
This is not working:
<line n content> \
# <line n+1 content> \
<line n+2 content> \
<line n+3 content> \
Please note this: Comment multi-line bash statements has no answer and these: How to put a line comment for a multi-line command Commenting in a Bash script inside a multiline command refers on how to ADD a comment on a line, e.g.
<line n content> \
<line n+1 content> # comment for line n+1\
<line n+2 content> \
<line n+3 content> \
which differs from commenting an entire "line" (ok, a part of it)