mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-11 06:16:53 +03:00
22 lines
311 B
Markdown
22 lines
311 B
Markdown
|
# make
|
||
|
|
||
|
> Task runner for rules described in Makefile.
|
||
|
> Mostly used to control the compilation of an executable from source code.
|
||
|
|
||
|
- Call the all rule
|
||
|
|
||
|
`make`
|
||
|
|
||
|
- Call a specific rule
|
||
|
|
||
|
`make {{rule}}`
|
||
|
|
||
|
- Use specific Makefile
|
||
|
|
||
|
`make -f {{file}}`
|
||
|
|
||
|
- Execute make from another directory
|
||
|
|
||
|
`make -C {{directory}}`
|
||
|
|