如果我的 makefile 规则更改了目录,是否需要在完成之前更改回来?
如果我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不适用于基于 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 anycd
operations that it performs do not affect the parentmake
process.