Linux command
automake 命令
文本
Copy it and replace filenames, paths, or keywords as needed.
命令示例
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.)