gmake
users
Install
- All systems
-
curl cmd.cat/gmake.sh
- Debian
-
apt-get install make
- Ubuntu
-
apt-get install make
- Alpine
-
apk add make
- Arch Linux
-
pacman -S make
- Kali Linux
-
apt-get install make
- Fedora
-
dnf install make-1
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install make
- OS X
-
brew install make
- Raspbian
-
apt-get install make
- Dockerfile
- dockerfile.run/gmake
- Docker
-
docker run cmd.cat/gmake gmake
powered by Commando
make-1
users
make
utility for directing compilation
GNU Make is a utility which controls the generation of executables and other target files of a program from the program's source files. It determines automatically which pieces of a large program need to be (re)created, and issues the commands to (re)create them. Make can be used to organize any task in which targets (files) are to be automatically updated based on input files whenever the corresponding input is newer --- it is not limited to building computer programs. Indeed, Make is a general purpose dependency solver.