Makefile 问题及解决
Makefile遇到的问题及解决方案。
问题
makefile文件的clean出错
解决
clean
下面的那句命令没有缩进,应该用[Tab]
缩进
小结
- 利用 Google、stackoverflow 等含金量高的问题解决平台
- 注意语法规范
问题
解决
newhello:hello.o hello_fn.o
中的newhello
应该写成hello
,应该与hello.c
中的名字一样
小结
- 注意编译运行的文件名
Makefile遇到的问题及解决方案。
makefile文件的clean出错
clean
下面的那句命令没有缩进,应该用[Tab]
缩进
newhello:hello.o hello_fn.o
中的newhello
应该写成hello
,应该与hello.c
中的名字一样