1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 14:44:57 +02:00
tldr/pages/common/make.md
2016-01-08 09:38:59 +01:00

20 lines
314 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}}`