- 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
 
(2 intermediate revisions by 2 users not shown)
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. 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
| available on          =
| category              = [[:Category:Build Tool | Build Tool]]
| license                =
| website                =
}}


== 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]
[[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