两个先决条件之一匹配的 Makefile 规则

发布于 2024-10-20 22:20:25 字数 342 浏览 2 评论 0原文

我想为一个案例编写一个 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 技术交流群。

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

发布评论

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

评论(1

怎言笑 2024-10-27 22:20:25

第一种方式是你如何表达这一点。所有 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.

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