一、自动处理头文件的依赖关系
在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]$$$$
原文地址:https://www.cnblogs.com/shanyu20/p/11122251.html
时间: 2024-10-25 13:41:42