mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-08 02:57:22 +00:00
Update cheatsheets
This commit is contained in:
29
tldr/automake
Normal file
29
tldr/automake
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
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`
|
||||
Reference in New Issue
Block a user