You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB

  1. ---
  2. date: "2017-01-14T11:00:00-02:00"
  3. title: "Make"
  4. slug: "make"
  5. weight: 10
  6. toc: true
  7. draft: false
  8. menu:
  9. sidebar:
  10. parent: "advanced"
  11. name: "Make"
  12. weight: 30
  13. identifier: "make"
  14. ---
  15. # Make
  16. Gitea makes heavy use of Make to automate tasks and have a faster development. This guide cover how to install Make.
  17. ### On Linux
  18. You can install with your package manager.
  19. On Ubuntu/Debian:
  20. ```bash
  21. sudo apt-get install build-essential
  22. ```
  23. On Fedora/RHEL/CentOS:
  24. ```bash
  25. sudo yum install make
  26. ```
  27. ### On Windows
  28. If you are using Windows, you can download and use one of these distributions of Make:
  29. - [Single binary build](http://www.equation.com/servlet/equation.cmd?fa=make). Copy somewhere and add to `PATH`.
  30. - [32-bits version](ftp://ftp.equation.com/make/32/make.exe)
  31. - [64-bits version](ftp://ftp.equation.com/make/64/make.exe)
  32. - [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`.
  33. - [Chocolatey package](https://chocolatey.org/packages/make). Run `choco install make`