Install GNU Make

makearrow-up-right is a build automation tool that automatically builds executables or other targets from source files based on rules defined in a Makefile. It’s widely used in software development and scripting to define reproducible workflows and dependency-based execution.

macOS

Install via Homebrew:

brew install make

Alternatively, if you have Xcode installed, make is included with the Xcode Command Line Tools:

xcode-select --install

Linux

Debian/Ubuntu

sudo apt update
sudo apt install make

Fedora/RHEL

sudo dnf install make

Windows

Option 1: Install with MSYS2

Option 2: Install via Chocolatey

Last updated