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

Popular posts from this blog

c - Calling a function within a loop -

vb.net - Unbound DataGridView add row with checkbox error -

How i fill combobox items in Radgridview manually using in vb.net -