- 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 1: Line 1:
{{Infobox software
{{Infobox software
| description = 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. Though Integrated Development Environments 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.
| description = 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, <tt>make</tt> remains widely used, especially in Unix-based platforms.
| developer              = Stuart Feldman
| developer              = Stuart Feldman
| available on       =
| available on           =
| category                 = [[:Category:Build Tool | Build Tool]]
| category               = [[:Category:Build Tool | Build Tool]]
| license                =  
| license                =  
| website                =
| website                =
Line 10: Line 10:
== See also ==
== See also ==
* [[Software Development Tools, Compilers & Libraries]]
* [[Software Development Tools, Compilers & Libraries]]
== External links ==
* [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]]

Revision as of 16:07, 10 January 2012

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