makefile包含解析变量

时间:2012-05-17 15:20:30

标签: makefile

这是一件简单的事情,我已经花了太多时间寻找解决方案......

我的makefile中有变量

$(targets): target1.o target2.o target3.o

现在我想基于这个变量对target1.d target2.d target3.d执行include命令,执行它的正确的一行命令是什么?

1 个答案:

答案 0 :(得分:2)

targets_obj := target1.o target2.o target3.o
$(targets): $(targets_obj)
-include $(targets_obj:.o=.d)