makefile脚本 erb -T 是什么意思
时间: 2023-08-16 18:03:34 浏览: 207
GNU-Makefile中文手册-Ver3.8.pdf
在Makefile中,`erb -T`是一个命令,用于列出可用的ERB模板引擎选项。
ERB模板引擎是一个Ruby标准库,用于将ERB模板文件编译为普通文本文件。`erb -T`命令允许您查看可用的ERB模板引擎选项及其说明。
例如,运行以下命令:
```
erb -T
```
将列出可用的ERB模板引擎选项及其说明。例如:
```
$ erb -T
Ruby ERB
-r, --require FILE require the library FILE
-U, --undef do not define undefine variables as nil
-E, --escape-html escape HTML characters in the output
```
在Makefile中,您可以使用`erb -T`命令来查看可用的选项,以便更好地了解如何编译ERB模板文件。
阅读全文