← 返回命令列表

Linux command

automake 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Generate

automake --add-missing

Example

automake --add-missing --copy

Example

automake-1.16

说明

automake generates Makefile.in templates from Makefile.am files. It works with autoconf to create the complete GNU Build System, handling compilation, installation, and distribution tasks. Automake provides portable makefiles that work across Unix-like systems.

参数

--add-missing
Add missing standard files (install-sh, missing, etc.)
--copy
Copy files instead of symlinking
--force-missing
Replace existing standard files
-W _category_
Warning level
--foreign
Relax GNU standards
--gnits
Stricter GNU standards
-a, --add-missing
Add missing auxiliary files
-c, --copy
Copy auxiliary files

FAQ

What is the automake command used for?

automake generates Makefile.in templates from Makefile.am files. It works with autoconf to create the complete GNU Build System, handling compilation, installation, and distribution tasks. Automake provides portable makefiles that work across Unix-like systems.

How do I run a basic automake example?

Run `automake --add-missing` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --add-missing do in automake?

Add missing standard files (install-sh, missing, etc.)