make is a GNU command, so the only way to get it on Windows is to install a version of Windows similar to the one provided by GNUWin32 . Or you can install MinGW and then run:
copy c:\MinGW\bin\mingw32-make.exe c:\MinGW\bin\make.exe
or create a link to the actual executable in your PATH variable. In this case, if you update MinGW, the link will not be deleted:
mklink c:\bin\make.exe C:\MinGW\bin\mingw32-make.exe
Another option is to use Chocolate . First you need to install this package manager. After installation, you need to install make :
choco install make.
The last option is to install the Windows Subsystem for Linux (WSL) , so you will have a built-in Linux distribution on Windows 10 where you can install make , gcc and all the tools necessary to create C programs.
Eduardo yÑñez parareda
source share