makefile $(hide)
时间: 2023-07-14 14:57:11 浏览: 222
how to write makefile
在makefile中,$(hide)是一个函数,用于隐藏make过程中的命令行输出。它的使用方式如下:
```
$(hide)command
```
其中,command是要执行的命令,$(hide)用于隐藏该命令的输出。
这个函数通常用于执行敏感命令或者在makefile中隐藏一些细节。例如,以下makefile代码段使用$(hide)来隐藏curl命令的输出:
```
all:
$(hide)curl -sS https://example.com/api > data.json
```
在这个例子中,$(hide)函数会隐藏curl命令的输出,使得执行makefile时不会看到该命令的详细输出。
注意:$(hide)函数是GNU make特有的,不是标准的makefile语法。如果您使用的是其他make工具,则可能需要使用其他方法来隐藏命令的输出。
阅读全文