Files
tldr/pages.zh/common/autoconf.md

16 lines
509 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# autoconf
> 生成配置脚本以自动配置软件源代码包。
> 更多信息:<https://www.gnu.org/software/autoconf>。
-`configure.ac`(如果存在)或 `configure.in` 生成配置脚本,并将此脚本保存为 `configure`
`autoconf`
- 从指定模板生成配置脚本;输出到 `stdout`
`autoconf {{template-file}}`
- 从指定模板生成配置脚本(即使输入文件没有改变)并将输出写入文件:
`autoconf --force --output {{outfile}} {{template-file}}`