Makefile 中是否有 __DIR__ 的等效项?
在许多脚本文件中,__DIR__表示脚本文件本身所在的目录。
GNU Make 中有等效的东西吗?
In many script files, __DIR__ means the directory where the script file itself is located.
Is there any equivalence in GNU Make?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有
CURDIR
变量。请参阅此处。CURDIR
包含当前工作,并在 GNU make 3.77 中引入。对于旧版本的 gnu make,您可能需要使用 ${PWD}。There is the
CURDIR
variable. See here.CURDIR
contains the current working, and was introduced in GNU make 3.77. With older versions of gnu make, you may need to use ${PWD}.