如果我的 makefile 规则更改了目录,是否需要在完成之前更改回来?

发布于 2024-09-18 05:51:55 字数 332 浏览 3 评论 0原文

如果我的 makefile 中有这样的规则:

subdir/object:
    cd subdir && do_stuff_to_build_object

我是否需要添加 && cd .. 到规则末尾,以便 make 在运行结束时与开始时位于同一目录中?或者 make 是否在子 shell 中运行规则,或者以其他方式屏蔽自身免受更改目录之类的事情?换句话说,执行该规则后,后续规则是否会在 subdir/ 中执行,而不是在我想要的位置执行?

If I have a rule in my makefile like this:

subdir/object:
    cd subdir && do_stuff_to_build_object

Do I need to add && cd .. to the end of the rule, so that make ends up in the same directory at the end of running it as it started? Or does make run the rule in a subshell or otherwise shield itself from things like changing directories? In other words, after executing that rule, will subsequent rules be executed in subdir/ instead of where I want them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

中性美 2024-09-25 05:51:55

不适用于基于 Unix 的系统。

该操作由 make 运行的 shell(或者至少是子进程)执行,并且它执行的任何 cd 操作不会影响父 >制作过程。

Not on Unix-based systems.

The action is performed by a shell (or, at least, a sub-process) run by make, and any cd operations that it performs do not affect the parent make process.

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