Makefile基础
Posted shanyu20
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Makefile基础相关的知识,希望对你有一定的参考价值。
一、自动处理头文件的依赖关系
在Makefile中插入如下代码:
include $(sources:.c=.d) %.d: %.c set -e; rm -f [email protected]; $(CC) -MM $(CPPFLAGS) $< > [email protected]$$$$; sed ‘s,\($*\)\.o[ :]*,\1.o [email protected] : ,g‘ < [email protected]$$$$ > [email protected]; rm -f [email protected]$$$$
以上是关于Makefile基础的主要内容,如果未能解决你的问题,请参考以下文章