Category:Make: Difference between revisions

From Rosetta Code
Content added Content deleted
m (wp / normal use)
m (CMake)
 
Line 8: Line 8:
i.e. the steps to compile, link, etc.
i.e. the steps to compile, link, etc.


;Similar programs:
* [[:Category:Apache Ant]]
* [[:Category:CMake]]
* SCons



[[Category:Utility]] <!-- [[Category:UtilityLanguage]] -->
[[Category:Utility]]

Latest revision as of 14:22, 21 November 2014

Language
Make
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using Make.

Make is one of the mini-languages of UNIX.

It is Turing complete if recursive invocation is allowed.

Make is normally used to automate the process of building software-projects,
i.e. the steps to compile, link, etc.

Similar programs