使用单个操作/规则生成多个目标

发布于 2024-09-05 07:26:57 字数 224 浏览 3 评论 0原文

如何编写规则来使用单个操作生成文件集。

例子: 文件 xyz 是单次执行脚本 t.sh 的结果,该脚本接受文件a 作为输入。

x y z: a
    t.sh $@

GNU make 尝试执行 t.sh 3 次。

How do I write a rule to generate set of files using a single action.

Example:
Files x, y, z are generated as a result of single execution of script t.sh which takes file a as input.

x y z: a
    t.sh $@

GNU make tries to execute t.sh 3 times.

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

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

发布评论

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

评论(1

天涯离梦残月幽梦 2024-09-12 07:26:57

您可以实现 automake 手册

因为您已经标记了此 gnumake,所以我还应该指出,使用具有多个目标的 GNU make 模式规则(带有 % 的规则)将考虑从一次执行中生成两者规则的说明:请参阅 GNU make 手册。

You could implement one of the solutions specified in the automake manual.

Because you've tagged this gnumake, I should also point out that using a GNU make pattern rule (the ones with %) with multiple targets WILL consider both generated from one execution of the rule: see the GNU make manual.

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