makefile中echo -e
时间: 2023-10-13 22:22:46 浏览: 105
U-Boot_Makefile分析
在 Makefile 中,`echo` 命令用于在终端输出一段文本。`-e` 选项会启用转义字符的解析,比如 `\n` 表示换行。例如:
```
hello:
echo -e "Hello\nWorld"
```
执行 `make hello` 后,终端输出:
```
Hello
World
```
阅读全文
U-Boot_Makefile分析