diff options
author | John Olheiser <john.olheiser@gmail.com> | 2020-10-23 10:59:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 11:59:45 -0400 |
commit | 1d6b565de452d24e1db0ca21ba69289809fdc32a (patch) | |
tree | 90baf36836e97916c0469da6ecd5605c81e80b00 /docs/content/doc/advanced/make.en-us.md | |
parent | bfc553164aafaacf5a82427b85145aa2ef34aaa3 (diff) | |
download | gitea-1d6b565de452d24e1db0ca21ba69289809fdc32a.tar.gz gitea-1d6b565de452d24e1db0ca21ba69289809fdc32a.zip |
Refactor docs (#13275)
* First pass
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* More changes
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Redirects
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Diffstat (limited to 'docs/content/doc/advanced/make.en-us.md')
-rw-r--r-- | docs/content/doc/advanced/make.en-us.md | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/docs/content/doc/advanced/make.en-us.md b/docs/content/doc/advanced/make.en-us.md deleted file mode 100644 index f90367de59..0000000000 --- a/docs/content/doc/advanced/make.en-us.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -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 improve development. This -guide covers how to install Make. - -### On Linux - -Install with the package manager. - -On Ubuntu/Debian: - -```bash -sudo apt-get install make -``` - -On Fedora/RHEL/CentOS: - -```bash -sudo yum install make -``` - -### On Windows - -One of these three distributions of Make will run on Windows: - -- [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 `PATH`. -- [Chocolatey package](https://chocolatey.org/packages/make). Run `choco install make` |