> For the complete documentation index, see [llms.txt](https://tk233.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tk233.gitbook.io/notes/tools/windows/install-make-on-windows.md).

# Install Make on Windows

## Method 1: Install with MSYS2

Download the installer from <https://www.msys2.org/>.

<figure><img src="/files/y0LrCuE5gkmWTg9sDhGf" alt=""><figcaption></figcaption></figure>

Install make with the command:

```bash
pacman -S make
```

![](/files/RRuL02jVDh2sF3Z5a71e)

Add the following path to PATH:

```bash
D:\Documents\msys64\usr\bin
```

## Method 2: Install with GNUWin (Not Recommended)

Download GunWin make from [here](https://gnuwin32.sourceforge.net/packages/make.htm).

Download both the "Binaries" and "Dependencies" Zip files.

<figure><img src="/files/0PfKkkKckmJG7cjZkpEG" alt=""><figcaption></figcaption></figure>

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.

<figure><img src="/files/zIl7p5GBp4y2qsczf0eZ" alt=""><figcaption><p>Content inside "bin" after the merge</p></figcaption></figure>

Add `D:\Documents\Make\bin` to PATH.

Now make is installed on the system. Run `make` to invoke.

<figure><img src="/files/vb0JTESVRaQXOFb56vhL" alt=""><figcaption></figcaption></figure>
