如何抑制makefile中的回声?

发布于 2024-07-19 14:28:46 字数 503 浏览 4 评论 0原文

我在 Makefile 中有以下 PHONY 目标

install: 
        echo /usr/bin/shelldecrypt must be writable
        cp shelldecrypt /usr/bin

当我运行目标时,它会显示正在执行的命令

提示>; make install

输出是

    echo /usr/bin/shelldecrypt must be writable 
    /usr/bin/shelldecrypt must be writable
    cp shelldecrypt /usr/bin

按照我想要的方式输出

    /usr/bin/shelldecrypt must be writable
    cp shelldecrypt /usr/bin

I have the following PHONY target in Makefile

install: 
        echo /usr/bin/shelldecrypt must be writable
        cp shelldecrypt /usr/bin

When I run the target it displays the command it is executing

prompt> make install

OUTPUT IS


    echo /usr/bin/shelldecrypt must be writable 
    /usr/bin/shelldecrypt must be writable
    cp shelldecrypt /usr/bin

OUTPUT AS I WOULD LIKE IT


    /usr/bin/shelldecrypt must be writable
    cp shelldecrypt /usr/bin

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

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

发布评论

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

评论(1

暖树树初阳… 2024-07-26 14:28:46

你可以在命令前添加“@”来抑制回声

install: 
        @echo /usr/bin/shelldecrypt must be writable
        cp shelldecrypt /usr/bin

you could add "@" before your command to surpress that echo

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