递归 nmake 目标

发布于 2024-07-20 15:33:36 字数 154 浏览 9 评论 0原文

当通过 $(MAKE) 宏递归调用 nmake 时,如何将命令行上指定的目标传递给新实例?

因此,假设我从命令行执行以下命令:

c:\nmake clean

我希望对 nmake 的递归调用将“clean”目标传递给新的 nmake 实例。

When recursively invoking nmake, via the $(MAKE) macro, how can I pass on the target specified on the command line to the new instance?

So, say I execute the following from the command line:

c:\nmake clean

I want the recursive call to nmake to pass the 'clean' target to the new nmake instance.

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

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

发布评论

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

评论(2

彩扇题诗 2024-07-27 15:33:36

你可以这样编写规则:

clean all:
    cd dir1 && $(MAKE) $*
    cd dir2 && $(MAKE) $*

$* 将被目标名称替换(本例中为“clean”或“clean”)

you can write rule like this:

clean all:
    cd dir1 && $(MAKE) $*
    cd dir2 && $(MAKE) $*

$* will be substituted by target name ("clean" or "clean" in this example)

泪意 2024-07-27 15:33:36

我不确定我是否理解这个问题,但您通常会根据执行 makefile 的特定部分这一事实来制定规则,例如:

clean:
    cd dir1 && $(MAKE) clean
    cd dir2 && $(MAKE) clean

all:
    cd dir1 && $(MAKE) all
    cd dir2 && $(MAKE) all

如果您的 makefile 中有一些其他设置,您最好的选择是将其发布,以便我们可以进行更好的分析。

I'm not sure I understand the question but you normally have the rule by virtue of the fact that your executing a specific part of the makefile, such as:

clean:
    cd dir1 && $(MAKE) clean
    cd dir2 && $(MAKE) clean

all:
    cd dir1 && $(MAKE) all
    cd dir2 && $(MAKE) all

If you have some other setup in your makefile, your best bet is to post it so we can do a better analysis.

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