tags:

views:

315

answers:

2

hi ,

D:\usr\xtensa\XtDevToolsDE\install\builds\RB-2008.4-win32\DC_108mini\examples\XTMP>make Makefile:168: *** missing separator. Stop.

Regards

Rg

+1  A: 

don't use spaces; use tabs

Correct

target: 
\tcmd

where \t is TAB

Wrong

target:
    cmd
dfa
correct..its gone....
Renjith G
A: 

This is a syntax error in your Makefile. It's quite hard to be more specific than that, without seeing the file itself, or relevant portion(s) thereof.

unwind