相当于 GNU 风格 makefile 的依赖项列表中的 ${@}

发布于 2024-11-30 08:10:13 字数 303 浏览 1 评论 0原文

在 Sun make 中,我可以创建类似于以下内容的规则:

${OBJECTS} : ${@F:%.o=%.c}
     (...) ${<}

... 其中依赖项列表中的 ${@} 与目标的规则部分中的 ${@} 相同。这样,${<} 始终会计算出正在构建的对象的正确源文件。

这有点像执行以下形式的规则:

%.o : %.c
     (...) ${<}

我的问题是:有没有办法用 GNU make 来做到这一点?

In Sun make, I can create a rule resembling the following:

${OBJECTS} : ${@F:%.o=%.c}
     (...) ${<}

... where ${@} in the dependency list is the same as ${@} in the rule portion of the target. That way, ${<} always evaluates to the right source file for the object being built.

This is somewhat like doing rules of the form:

%.o : %.c
     (...) ${<}

My question is: is there a way to do this with GNU make?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤芳又自赏 2024-12-07 08:10:13

是的。

%.o : %.c
    (...) 
lt;

或者,如果您想将规则限制为 ${OBJECTS}

${OBJECTS} : %.o : %.c
    (...) 
lt;

Yes.

%.o : %.c
    (...) 
lt;

Or if you want to restrict the rule to ${OBJECTS}:

${OBJECTS} : %.o : %.c
    (...) 
lt;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文