使用单个操作/规则生成多个目标
如何编写规则来使用单个操作生成文件集。
例子: 文件 x
、y
、z
是单次执行脚本 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实现 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.