如何将当前目录捕获为 make 变量中的绝对路径名?
我想在 GNUmake 文件运行期间获取当前目录并将其放入 make 变量中。
执行此操作的语法是什么?像这样的东西吗?
DIR := $(PWD)
I'd like to get the current directory during a GNUmake file run put into a make variable.
What is the syntax to do this? Something like this?
DIR := $(PWD)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,不,
$PWD
有时是在您的环境中定义的,因此由 make 继承,但通常不是。您需要$CURDIR
。Um, no,
$PWD
is sometimes defined in your environment and thus inherited by make, but oftentimes not. You need$CURDIR
.如果您的一个 makefile 包含位于不同目录中的另一个 makefile,则子 makefile 的
PWD
和CURDIR
不会更新。如果第二个 makefile 需要知道它在哪里,下面的内容会告诉您。If you have one makefile including another in a different directory,
PWD
andCURDIR
aren't updated for the child makefile. If that second makefile needs to know where it is, the following will tell you.