mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-05 16:44:26 +00:00
30 lines
653 B
Plaintext
30 lines
653 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# automake
|
|
|
|
> Automated Makefile generation for software projects using GNU standards.
|
|
> More information: <https://www.gnu.org/software/automake/manual/automake.html#automake-Invocation>.
|
|
|
|
- Run automake to regenerate Makefiles after editing `Makefile.am`:
|
|
|
|
`automake`
|
|
|
|
- Generate `Makefile.in` for a non-GNU project (foreign mode):
|
|
|
|
`automake --foreign`
|
|
|
|
- Add verbose output for debugging:
|
|
|
|
`automake {{[-v|--verbose]}}`
|
|
|
|
- Add missing standard files (INSTALL, COPYING, depcomp, etc.):
|
|
|
|
`automake {{[-a|--add-missing]}}`
|
|
|
|
- Display help:
|
|
|
|
`automake --help`
|