问题一
makefile文件的clean出错
解决
clean
下面的那句命令没有缩进,应该用[Tab]
缩进
小结
- 利用 Google、stackoverflow 等含金量高的问题解决平台
- 注意语法规范
问题二
解决
newhello:hello.o hello_fn.o
中的newhello
应该写成hello
,应该与hello.c
中的名字一样
小结
- 注意编译运行的文件名
专业修电脑,副业补衣服
makefile文件的clean出错
clean
下面的那句命令没有缩进,应该用[Tab]
缩进
newhello:hello.o hello_fn.o
中的newhello
应该写成hello
,应该与hello.c
中的名字一样