两个先决条件之一匹配的 Makefile 规则
我想为一个案例编写一个 makefile 规则,其中 .bbb 和 .ccc 类型的文件被编译为 .aaa。
我可以简单地编写两条规则:
%.aaa: %.bbb
process $<
%.aaa: %.ccc
process $<
但我想知道这是否可以在一条规则中完成,例如:
%.aaa: %.bbb OR %.ccc
process $<
请注意,只有文件 bbb 或 ccc 之一足以编译,在我的情况下,只有一个存在(所以要么x.bbb 或 x.ccc,但不能同时使用)。
I want to wite a makefile rule for a case, where
files of type .bbb and .ccc are compiled into .aaa.
I could simply write two rules:
%.aaa: %.bbb
process lt;
%.aaa: %.ccc
process lt;
but I'm wodering whether this could be accomplished in one rule, such as:
%.aaa: %.bbb OR %.ccc
process lt;
Note that only one of the files bbb or ccc is enough for compilation, and in my case, only one exists (so either x.bbb OR x.ccc, not both).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一种方式是你如何表达这一点。所有 makefile 规则都隐式地组合在一起。说您可以从 %.bbb 或 %.ccc 创建 %.aaa 与说您可以从 %.bbb 创建 %.aaa 以及您可以从 %.ccc 创建 %.aaa 是一样的。
如果规则的主体很复杂并且您想要“重用主体”,许多品牌都有宏工具,可以让您将其定义在一处并重用它。
The first way is how you express this. All makefile rules are implicitly ored together. Saying you can create %.aaa from either %.bbb or %.ccc is the same as saying you can create %.aaa from %.bbb and you can create %.aaa from %.ccc.
If the body of the rule is complex and you want to "reuse the body", many makes have macro facilities that will let you define it one place and reuse it.