makefile:2: *** missing separator. Stop. make 之后出现的错误,解决方法

问题
今天建立了个个helloworld.c 以及Makefile文件.
hellworld.c 中内容如下:

#include
int main()
{
printf("hello world\n");
return 0;
}

Makefile中的内容如下:

hello:helloword.c
      gcc -o hello helloword.c

然后 make 出现如下错误:

makefile:2: *** missing separator.  Stop.

整体效果如图下代码所示:

root@ubuntu:~/lesson/chap1/1-1# ls
helloword.c  makefile
root@ubuntu:~/lesson/chap1/1-1# make
makefile:2: *** missing separator.  Stop.

解决方法
gcc -o hello helloword.c前面用TAB键,而不是空格空格空格….

你可能感兴趣的:(makefile,gcc,make,linux,Ubuntu)