make: add page

This commit is contained in:
sabour_f
2016-01-04 11:23:09 +01:00
parent c3bc91c813
commit 1e936f5388

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}}`