Install Make on Windows
Method 1: Install with MSYS2
Download the installer from https://www.msys2.org/.

Install make with the command:
pacman -S make

Add the following path to PATH:
D:\Documents\msys64\usr\bin
Method 2: Install with GNUWin (Not Recommended)
Download GunWin make from here.
Download both the "Binaries" and "Dependencies" Zip files.

Create a folder for Make in a known location, for example, D:\Documents\Make
.
Unzip the "make-3.81-bin.zip" first to the newly created folder, then merge the content in "make-3.81-dep.zip" to the newly created folder.

Add D:\Documents\Make\bin
to PATH.
Now make is installed on the system. Run make
to invoke.

Last updated
Was this helpful?