1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 11:17:59 +01:00

Merge pull request #571 from Ethiraric/make-page

make: add page
This commit is contained in:
Felix Yan 2016-01-04 20:01:29 +08:00
commit 8e2cfdd3b6

21
pages/common/make.md Normal file
View file

@ -0,0 +1,21 @@
# 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}}`