如何将当前目录捕获为 make 变量中的绝对路径名?

发布于 2024-09-06 06:55:43 字数 115 浏览 4 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

山川志 2024-09-13 06:55:43

嗯,不,$PWD 有时是在您的环境中定义的,因此由 make 继承,但通常不是。您需要$CURDIR

DIR := ${CURDIR}

Um, no, $PWD is sometimes defined in your environment and thus inherited by make, but oftentimes not. You need $CURDIR.

DIR := ${CURDIR}
来世叙缘 2024-09-13 06:55:43

如果您的一个 makefile 包含位于不同目录中的另一个 makefile,则子 makefile 的 PWDCURDIR 不会更新。如果第二个 makefile 需要知道它在哪里,下面的内容会告诉您。

$(dir $(realpath $(lastword $(MAKEFILE_LIST))))

If you have one makefile including another in a different directory, PWD and CURDIR aren't updated for the child makefile. If that second makefile needs to know where it is, the following will tell you.

$(dir $(realpath $(lastword $(MAKEFILE_LIST))))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文