mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-04 15:55:35 +00:00
Update cheatsheets
This commit is contained in:
10
tldr/make
10
tldr/make
@@ -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}}`
|
||||
|
||||
Reference in New Issue
Block a user