<p><code>make</code> is a GNU command, so the only way vous pouvez get it on Windows is installing a Windows version like the one provided by <a href="http://gnuwin32.sourceforge.net/install.html">GNUWin32</a>. Anyway, il y a several options for getting that:</p>
<ul>
<li></li>
</ul>
<p>Directly download from <a href="https://gnuwin32.sourceforge.net/packages/make.htm">Make for Windows</a></p>
<ul>
<li></li>
</ul>
<p>Using <a href="https://chocolatey.org/install">Chocolatey</a>. First, vous devez install this package manager. Once installed, you simply need to install <code>make</code> (you may need to run it in an elevated/administrator invite de commandes):</p>
<pre><code class="lang-auto">choco install make
</code></pre>
<ul>
<li></li>
</ul>
<p>Another recommended option is <a href="https://learn.microsoft.com/en-us/windows/wsl/install-win10">installing a Windows Subsystem for Linux (WSL or WSL 2)</a>, so you’ll have a Linux distribution of your choice embedded in Windows 10, where you’ll be able to install <code>make</code>, <code>gcc</code>, and all the tools vous devez build C programs.</p>
<ul>
<li></li>
</ul>
<p>For older Windows versions (Microsoft <a href="https://en.wikipedia.org/wiki/Windows_2000">Windows 2000</a>, <a href="https://en.wikipedia.org/wiki/Windows_XP">Windows XP</a>, <a href="https://en.wikipedia.org/wiki/Windows_Server_2003">Windows Server 2003</a>, <a href="https://en.wikipedia.org/wiki/Windows_Vista">Windows Vista</a>, <a href="https://en.wikipedia.org/wiki/Windows_Server_2008">Windows Server 2008</a>, or <a href="https://en.wikipedia.org/wiki/Windows_7">Windows 7</a> with <em>msvcrt.dll</em>) vous pouvez utiliser <a href="http://gnuwin32.sourceforge.net/install.html">GnuWin32</a>.</p>
<p>An outdated alternative was <a href="https://www.ics.uci.edu/%7Epattis/common/handouts/mingweclipse/mingw.html">MinGW</a>, but the project seems to be abandoned, so it’s better to go for one of the previous choices.</p>