diff options
author | techknowlogick <techknowlogick@users.noreply.github.com> | 2017-11-26 16:44:32 -0500 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-11-26 23:44:32 +0200 |
commit | fb5c6b644460f94acb8976ad35165230b9d47fb2 (patch) | |
tree | 3811cb3807a9f666e77743cc0fc8bcea4276f421 /docs/content/doc/advanced/make.en-us.md | |
parent | f148a4a1ed55c75d391930865185fb7bfbee03ba (diff) | |
download | gitea-fb5c6b644460f94acb8976ad35165230b9d47fb2.tar.gz gitea-fb5c6b644460f94acb8976ad35165230b9d47fb2.zip |
Import docs into main repository (#2874)
* import docs into main repository
Signed-off-by: Matti Ranta <matti@mdranta.net>
Diffstat (limited to 'docs/content/doc/advanced/make.en-us.md')
-rw-r--r-- | docs/content/doc/advanced/make.en-us.md | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/docs/content/doc/advanced/make.en-us.md b/docs/content/doc/advanced/make.en-us.md new file mode 100644 index 0000000000..836c544397 --- /dev/null +++ b/docs/content/doc/advanced/make.en-us.md @@ -0,0 +1,44 @@ +--- +date: "2017-01-14T11:00:00-02:00" +title: "Make" +slug: "make" +weight: 10 +toc: true +draft: false +menu: + sidebar: + parent: "advanced" + name: "Make" + weight: 30 + identifier: "make" +--- + +# 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: + +```bash +sudo apt-get install build-essential +``` + +On Fedora/RHEL/CentOS: + +```bash +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](http://www.equation.com/servlet/equation.cmd?fa=make). Copy somewhere and add to `PATH`. + - [32-bits version](ftp://ftp.equation.com/make/32/make.exe) + - [64-bits version](ftp://ftp.equation.com/make/64/make.exe) +- [MinGW](http://www.mingw.org/) includes a build. The binary is called `mingw32-make.exe` instead of `make.exe`. Add the `bin` folder to your `PATH`. +- [Chocolatey package](https://chocolatey.org/packages/make). Run `choco install make` |