Automake:Makefile.am 中的条件语法
我熟悉 if VAR_NAME
,其中 VAR_NAME
是由 configure.ac 内的 AM_CONDITIONAL 子句定义的。
Makefile.am 中是否有相应的“如果未定义”构造?
I am familiar with the if VAR_NAME
, where VAR_NAME
is defined by an AM_CONDITIONAL clause inside of configure.ac.
Is there a corresponding "if not defined" construct in Makefile.am?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不存在“如果未定义”的构造。必须编写configure.ac,以便始终定义条件。但是,如果您想测试条件是否为假,则可以执行“if !VAR_NAME”。
There is no "if not defined" construct. The configure.ac must be written so that the conditional is always defined. However, you can do "if ! VAR_NAME" if you want to test that the condition is false.