I am getting the following error running make:
make
Makefile:168: *** missing separator. Stop.
What is causing this?
As 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)
U+0009
target: ....cmd
where each . represents a SPACE (U+0020).
.
U+0020
2.1m questions
2.1m answers
60 comments
57.0k users