本文介绍了进行递归空运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要查看make正在使用哪些命令,但是运行命令make --dry-run
不会显示内部make -C /foo
使用的命令.
I need to look at which commands are being used by make, but running command make --dry-run
does not show the commands used by an internal make -C /foo
.
有什么办法可以递归地进行这项工作吗?
Is there any way to make this work recursively?
推荐答案
要允许-n
递归工作,请使用$(MAKE)
而不是仅make
递归调用make.
To allow -n
to work recursively, invoke make recursively with $(MAKE)
instead of just make
.
foo:
$(MAKE) -C /foo
这篇关于进行递归空运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!