makefile - Make error: missing separator -
i getting following error running make
:
makefile:168: *** missing separator. stop.
what causing this?
as indicated in online manual, common cause error lines indented whitespaces when make
expects tab characters.
correct
target: \tcmd
where \t tab
wrong
target: cmd
Comments
Post a Comment