Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-20 00:21:08 +00:00
parent 9c64f72b0c
commit c3f5e8d7ab
19 changed files with 409 additions and 8 deletions

29
tldr/automake Normal file
View 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`