- Infos im HLRS Wiki sind nicht rechtsverbindlich und ohne Gewähr -
- Information contained in the HLRS Wiki is not legally binding and HLRS is not responsible for any damages that might result from its use -

Make: Difference between revisions

From HLRS Platforms
Jump to navigationJump to search
No edit summary
No edit summary
 
Line 13: Line 13:
== External links ==
== External links ==
* [http://www.gnu.org/software/make/manual/make.html GNU make Manual]
* [http://www.gnu.org/software/make/manual/make.html GNU make Manual]
* [http://www.cmake.org/cmake/help/documentation.html Cmake Documentation]


[[Category:Build Tool]]
[[Category:Build Tool]]

Latest revision as of 14:37, 6 April 2016

In software development, make is a utility for automatically building executable programs and libraries from source code. Files called makefiles specify how to derive the target program from each of its dependencies. Make can decide where to start through topological sorting. Although Integrated Development Environments (IDEs) and language-specific compiler features can also be used to manage the build process in modern systems, make remains widely used, especially in Unix-based platforms.
Developer: Stuart Feldman
Platforms:
Category: Build Tool
License:
Website:


See also

External links