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

make.en-us.md 1.0 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 improve development. This
  17. guide covers how to install Make.
  18. ### On Linux
  19. Install with the package manager.
  20. On Ubuntu/Debian:
  21. ```bash
  22. sudo apt-get install make
  23. ```
  24. On Fedora/RHEL/CentOS:
  25. ```bash
  26. sudo yum install make
  27. ```
  28. ### On Windows
  29. One of these three distributions of Make will run on Windows:
  30. - [Single binary build](http://www.equation.com/servlet/equation.cmd?fa=make). Copy somewhere and add to `PATH`.
  31. - [32-bits version](ftp://ftp.equation.com/make/32/make.exe)
  32. - [64-bits version](ftp://ftp.equation.com/make/64/make.exe)
  33. - [MinGW](http://www.mingw.org/) includes a build.
  34. - The binary is called `mingw32-make.exe` instead of `make.exe`. Add the `bin` folder to `PATH`.
  35. - [Chocolatey package](https://chocolatey.org/packages/make). Run `choco install make`