将自定义代码添加到 Automake 生成的 Makefile 中
假设我想向 Automake 生成的 Makefile 添加运行时条件。有什么办法可以告诉 Automake 这个条件吗?
Suppose I want to add a runtime conditional to a Makefile generated by Automake. Is there any way to tell Automake about this conditional?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你问了一个非常笼统的问题,所以我只能提供一个非常笼统的答案。
automake
会解析您项目的Makefile.am
以生成Makefile.in
文件,最终生成Makefile
。在大多数情况下,您通常只需将自定义规则添加到Makefile.am
即可(假设这在您的控制之下)。请参阅此处了解更多详细信息或谷歌Makefile.am
You've asked a pretty general question so I can only provide a pretty general answer. Your project's
Makefile.am
is whatautomake
parses to produce theMakefile.in
file which ultimately produces theMakefile
. You can generally just add your custom rules toMakefile.am
for most cases (assuming this is under your control). See here for more details or googleMakefile.am