1
0
sabour_f 9 жил өмнө
parent
commit
1e936f5388
1 өөрчлөгдсөн 21 нэмэгдсэн , 0 устгасан
  1. 21 0
      pages/common/make.md

+ 21 - 0
pages/common/make.md

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