I'm following the instructions of someone whose repository I cloned to my machine. What I want is simple: to be able to use the make
command as part of setting up the code environment, but I'm using Windows. I searched online, but I could only find a make.exe
file, a make-4.1.tar.gz
file (I don't know what to do with it next) and instructions for how to download MinGW (for GNU; but after installing it I didn't find any mention of "make").
How do I use make
in Windows without a GNU compiler or related packages?
make
is unlikely to solve your problem. Many Makefiles are written for Unix-like systems and will require you to install a significant amount of additional utilities (including a supported compiler if the project involves compiled code) such as Cygwin, or simply switching to a platform like WSL if you really cannot free yourself from Windows entirely. – tripleee