如何在 Makefile 中打印 #(尖号)
假设您有一个变量设置为:
AVar = "#"
echo "${AVar}"
当运行 make 时,上述内容不会在 Makefile 中输出。
# 必须转义,但 AVar 的内容中可能没有特殊字符?
那么我怎样才能逃脱阿瓦尔呢?
Suppose you have a variable which is set as:
AVar = "#"
echo "${AVar}"
The above thing does not output in Makefile when run through make.
# must be escaped but the AVar may not have special chars in its content?
So what can I escape the Avar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 MacOS X 上使用 GNU Make 3.81 进行测试:
我不确定“AVar 的内容中可能没有特殊字符”是什么意思。在这种情况下,这是告诉
make
#
是字符串的一部分,而不是注释的开头的唯一方法。Tested working with GNU Make 3.81 on MacOS X:
I'm not sure what you mean by "AVar may not have special chars in its content". In this case it's the only way to tell
make
that the#
is part of the string, and not the start of a comment.