I am getting the following error running make
:
Makefile:168: *** missing separator. Stop.
What is causing this?
Question&Answers:osI am getting the following error running make
:
Makefile:168: *** missing separator. Stop.
What is causing this?
Question&Answers:osAs indicated in the online manual, the most common cause for that error is that lines are indented with spaces when make
expects tab characters.
target:
cmd
where is TAB (
U+0009
)
target:
....cmd
where each .
represents a SPACE (U+0020
).