- 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
| 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.
| developer              = Stuart Feldman
| available on      =
| category                  = [[:Category:Build Tool | Build Tool]]
| license                =
| website                =
}}


== See also ==
== See also ==
* [[Software Development Tools, Compilers & Libraries]]
* [[Software Development Tools, Compilers & Libraries]]
[[Category:Build Tool]]

Revision as of 11:36, 25 February 2010

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.
Developer: Stuart Feldman
Platforms:
Category: Build Tool
License:
Website:


See also