both of these two makefiles give me the message of
[Makefile:1: *** missing separator. Stop]
I am sure I used the tab.
both of these two makefiles give me the message of
[Makefile:1: *** missing separator. Stop]
I am sure I used the tab.
//
is not a comment delimeter in make, so the error is complaining about the first line -- it begins with a name (//
) that is not followed by a colon (so its not a rule) or =
(so its not a variable assignment).
Use #
for comments in a Makefile