Size: 932
Comment:
|
← Revision 6 as of 2023-05-31 16:28:15 ⇥
Size: 946
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 33: | Line 33: |
Recipes define the build process for a target. See [[Makefile]] for details. | Recipes define the build process for a target. See [[Make/Makefile|Makefile]] for details. |
Line 49: | Line 49: |
[[MAke/Makefile|Makefile]] | [[Make/Makefile|Makefile]] |
Make
make(1) is a build system. While part of the POSIX standard, GNU make(1) has slight divergences in behavior.
Contents
Installation
All Linux and BSD distributions offer a make package.
Especially on BSD distributions, it may be necessary to specifically install GNU make(1). This is usually available as gmake.
Usage
make [TARGET]
If a target is not specified, the default target is used.
Recipes
Recipes define the build process for a target. See Makefile for details.