Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-27 00:18:38 +00:00
parent 5871f35fe8
commit 9fe6559a97
123 changed files with 660 additions and 357 deletions

View File

@@ -19,19 +19,19 @@ source: https://github.com/tldr-pages/tldr.git
- Call a specific target, executing 4 jobs at a time in parallel:
`make -j{{4}} {{target}}`
`make {{[-j|--jobs]}} {{4}} {{target}}`
- Use a specific Makefile:
`make --file {{path/to/file}}`
`make {{[-f|--file]}} {{path/to/file}}`
- Execute make from another directory:
`make --directory {{path/to/directory}}`
`make {{[-C|--directory]}} {{path/to/directory}}`
- Force making of a target, even if source files are unchanged:
`make --always-make {{target}}`
`make {{[-B|--always-make]}} {{target}}`
- Override a variable defined in the Makefile:
@@ -39,4 +39,4 @@ source: https://github.com/tldr-pages/tldr.git
- Override variables defined in the Makefile by the environment:
`make --environment-overrides {{target}}`
`make {{[-e|--environment-overrides]}} {{target}}`