fb5c6b6444
* import docs into main repository Signed-off-by: Matti Ranta <matti@mdranta.net>
1.1 KiB
1.1 KiB
date | title | slug | weight | toc | draft | menu | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2017-01-14T11:00:00-02:00 | Make | make | 10 | true | false |
|
Make
Gitea makes heavy use of Make to automate tasks and have a faster development. This guide cover how to install Make.
On Linux
You can install with your package manager.
On Ubuntu/Debian:
sudo apt-get install build-essential
On Fedora/RHEL/CentOS:
sudo yum install make
On Windows
If you are using Windows, you can download and use one of these distributions of Make:
- Single binary build. Copy somewhere and add to
PATH
. - MinGW includes a build. The binary is called
mingw32-make.exe
instead ofmake.exe
. Add thebin
folder to yourPATH
. - Chocolatey package. Run
choco install make