repo/core/make
phoebos 7028d50226
*: explicit DESTDIR
2023-03-05 17:34:06 -06:00
..
README repo: check-in readmes 2021-08-26 07:22:10 +03:00
build *: explicit DESTDIR 2023-03-05 17:34:06 -06:00
checksums make: 4.4.1 2023-02-26 17:28:22 -06:00
sources *: remove VERSION markers 2023-03-02 18:00:45 +05:30
version make: 4.4.1 2023-02-26 17:28:22 -06:00

README

make
________________________________________________________________________________

GNU Make (short gmake) is the standard implementation of Make for Linux and
macOS. It provides several extensions over the original Make, such as
conditionals. It also provides many built-in functions which can be used to
eliminate the need for shell-scripting in the makefile rules as well as to
manipulate the variables set and used in the makefile. For example, the foreach
function can be used to iterate over a list of values, such as the names of
files in a given directory. GNU Make is required for building many software
systems, including GCC (since version 3.4), the Linux kernel, LibreOffice and
Mozilla Firefox. [0]

Upstream: https://www.gnu.org/software/make/


[000] Index
________________________________________________________________________________

* Installation ........................................................... [001]
* Usage .................................................................. [002]
* References ............................................................. [003]


[001] Installation
________________________________________________________________________________

+------------------------------------------------------------------------------+
|                                                                              |
|  $ kiss b make                                                               |
|                                                                              |
+------------------------------------------------------------------------------+


[002] Usage
________________________________________________________________________________

Refer to the manual pages and command help output.


[003] References
________________________________________________________________________________

[0] https://en.wikipedia.org/wiki/Make_(software)