Excerpt from http://www.mingw.org/wiki/FAQ:

What's the difference between make and mingw32-make?

The "native" (i.e.: MSVCRT dependent) port of make is lacking in some functionality and has modified functionality due to the lack of POSIX on Win32. There also exists a version of make in the MSYS distribution that is dependent on the MSYS runtime. This port operates more as make was intended to operate and gives less headaches during execution. Based on this, the MinGW developers/maintainers/packagers decided it would be best to rename the native version so that both the "native" version and the MSYS version could be present at the same time without file name collision.

So,look into C:\MinGW\bin directory and first make sure what make executable, have you installed.(make.exe or mingw32-make.exe)

Before using MinGW, you should add C:\MinGW\bin; to the PATH environment variable using the instructions mentioned at http://www.mingw.org/wiki/Getting_Started/

Then cd to your directory, where you have the makefile and Try using mingw32-make.exe makefile.in or simply make.exe makefile.in(depending on executables in C:\MinGW\bin).

If you want a GUI based solution, install DevCPP IDE and then re-make.

Answer from askmish on Stack Overflow
🌐
SourceForge
sourceforge.net › home › open source software › software development › build tools › mingw - minimalist gnu for windows › files
MinGW - Minimalist GNU for Windows - Browse /MinGW/Extension/make/mingw32-make-3.80-3 at SourceForge.net
To install files distributed by MinGW we suggest you use the mingw-get installer: https://sourceforge.net/projects/mingw/files/Installer To set mingw-get up for first time use, run the mingw-get-setup.exe tool; this will install mingw-get for use as a command line tool, and, at your option, ...
🌐
NerdyElectronics
nerdyelectronics.com › home › embedded systems › install mingw on windows for make
MinGW Install: Download, PATH Setup & mingw32-make Rename
April 3, 2026 - ... Open MinGW Installer. Select Basic Setup, navigate to Packages and Right click on “mingw-developer-toolkit-bin”, “mingw32-base-bin” and “msys-base-bin” Packages and select Mark for Installation.
Discussions

windows - How to build mingw32-make - Stack Overflow
I've just build a gcc 5.2.0 on windows according to this material: http://preshing.com/20141108/how-to-install-the-latest-gcc-on-windows/ Everything went well. But then I've tried to build Qt with this newly built gcc and I'm getting an error that there is no mingw32-make. More on stackoverflow.com
🌐 stackoverflow.com
[solved] mingw32-make install doesn't work | Qt Forum
I'm using QtCreator 2.2 alongside Qt SDK 1.1 on Windows. Now I tried to install the "kqoauth-library":http://gitorious.org/kqoauth/kqoauth by doing mingw32-m... More on forum.qt.io
🌐 forum.qt.io
May 16, 2011
Error installing mingw32-make via RTools43
Hi! I have been trying to install CmdStanR and get it to work on my laptop using the C++ toolchain tutorial listed here, however, I keep running into an error when trying to install the mingw32-make utility via Bash in RTools43. $ pacman -Syu mingw-w64-x86_64-make :: Synchronizing package ... More on discourse.mc-stan.org
🌐 discourse.mc-stan.org
0
0
April 26, 2024
Mingw32-make instead of make | Qt Forum
I found that to build my project ... variables during install Qt SDK on PC. I was also looking through Qt SDK file system and didn't found make.exe in QtSDK\Desktop\mingw\bin only in QtSDK\Symbian directories. Instead of it there is mingw32-make.exe which I assume is ... More on forum.qt.io
🌐 forum.qt.io
June 8, 2012
Top answer
1 of 9
58

Excerpt from http://www.mingw.org/wiki/FAQ:

What's the difference between make and mingw32-make?

The "native" (i.e.: MSVCRT dependent) port of make is lacking in some functionality and has modified functionality due to the lack of POSIX on Win32. There also exists a version of make in the MSYS distribution that is dependent on the MSYS runtime. This port operates more as make was intended to operate and gives less headaches during execution. Based on this, the MinGW developers/maintainers/packagers decided it would be best to rename the native version so that both the "native" version and the MSYS version could be present at the same time without file name collision.

So,look into C:\MinGW\bin directory and first make sure what make executable, have you installed.(make.exe or mingw32-make.exe)

Before using MinGW, you should add C:\MinGW\bin; to the PATH environment variable using the instructions mentioned at http://www.mingw.org/wiki/Getting_Started/

Then cd to your directory, where you have the makefile and Try using mingw32-make.exe makefile.in or simply make.exe makefile.in(depending on executables in C:\MinGW\bin).

If you want a GUI based solution, install DevCPP IDE and then re-make.

2 of 9
14

You have to actively choose to install MSYS to get the make.exe. So you should always have at least (the native) mingw32-make.exe if MinGW was installed properly. And if you installed MSYS you will have make.exe (in the MSYS subfolder probably).

Note that many projects require first creating a makefile (e.g. using a configure script or automake .am file) and it is this step that requires MSYS or cygwin. Makes you wonder why they bothered to distribute the native make at all.

Once you have the makefile, it is unclear if the native executable requires a different path separator than the MSYS make (forward slashes vs backward slashes). Any autogenerated makefile is likely to have unix-style paths, assuming the native make can handle those, the compiled output should be the same.

🌐
OSDN
osdn.net › find software › software development › code generators › mingw - minimalist gnu for windows › mailing lists
How-To/Tutorial for installing mingw-get and mingw32-make (Mingw-users) - MinGW - Minimalist GNU for Windows - OSDN
January 20, 2019 - Hey *, just posted a small video ...ith-xdebug-2-4-for-phpstorm-on-windows-10/#the-path-variable ) - Install 'mingw32-make' via 'mingw-get install mingw32-make' - Create the file 'bin/make' with the content 'mingw32-make.exe $*' ...
🌐
MSYS2
packages.msys2.org › packages › mingw-w64-x86_64-make
Package: mingw-w64-x86_64-make - MSYS2 Packages
5 days ago - /mingw64/bin/mingw32-make.exe /mingw64/include/gnumake.h /mingw64/lib/libgnumake-1.dll.a /mingw64/share/licenses/make/COPYING
🌐
Stack Overflow
stackoverflow.com › questions › 31682917 › how-to-build-mingw32-make
windows - How to build mingw32-make - Stack Overflow
if you follow your link from your question here you build it with the cygwin make.exe. It's better to download the mingw 32 binary runtime environment for gcc or ... Then you have all the files needed to work with QT. if you want to create a mingw build from source, you need first a MinGW runtime environment then you can use that to build your own mingw32-make.exe.
Find elsewhere
🌐
Qt Forum
forum.qt.io › home › qt development › installation and deployment › [solved] mingw32-make install doesn't work
[solved] mingw32-make install doesn't work | Qt Forum
May 16, 2011 - Building it works without errors, but it doesn't seem to be installed correctly. bq. twittercli.cpp:24:20: error: QtKOAuth: No such file or directory ... C:\kqoauth-kqoauth>mingw32-make install cd src\ && mingw32-make -f Makefile install mingw32-make[1]: Entering directory C:/kqoauth-kqoauth/src' mingw32-make -f Makefile.SharedDebug install mingw32-make[2]: Entering directory C:/kqoauth-kqoauth/src' mingw32-make[2]: Nothing to be done for install'. mingw32-make[2]: Leaving directory C:/kqoauth-kqoauth/src' mingw32-make[1]: Leaving directory C:/kqoauth-kqoauth/src' cd examples\ && mingw32-make
🌐
Stan Forums
discourse.mc-stan.org › interfaces › cmdstan
Error installing mingw32-make via RTools43 - CmdStan - The Stan Forums
April 26, 2024 - Hi! I have been trying to install CmdStanR and get it to work on my laptop using the C++ toolchain tutorial listed here, however, I keep running into an error when trying to install the mingw32-make utility via Bash in RTools43. $ pacman -Syu mingw-w64-x86_64-make :: Synchronizing package ...
🌐
CMake
cmake.org › cmake › help › latest › generator › MinGW Makefiles.html
MinGW Makefiles — CMake 4.3.3 Documentation
Use this generator under a Windows command prompt with MinGW (Minimalist GNU for Windows) in the PATH and using mingw32-make as the build tool. The generated makefiles use cmd.exe as the shell to launch build rules.
🌐
Medium
medium.com › @samsorrahman › how-to-run-a-makefile-in-windows-b4d115d7c516
How to Run a Makefile in Windows. Makefile is a special file containing… | by Samsor Rahman | Medium
September 22, 2023 - You can see that we are using the “mingw32-make” command instead of “make”. Let’s move ahead to fix it. ... Till this point, we have installed and configured make in Windows.
🌐
Qt Forum
forum.qt.io › home › qt development › general and desktop › mingw32-make instead of make
Mingw32-make instead of make | Qt Forum
June 8, 2012 - I experienced several problems by trying to use mingw32-make of the Qt SDK too. So i recommend you to download the Qt libraries and install MinGW seperately as i mentioned above.
🌐
Rose-Hulman Institute of Technology
rose-hulman.edu › class › csse › resources › MinGW › installation.htm
How to Install the MinGW Tools for C/C++
Download this MinGW folder and run it. Your browser may warn that "This file is not commonly downloaded and may harm your computer" , but run it anyway. (In one dialog box, selecting 'additional options' allowed it to run. This installation will download various files from the web.
🌐
Umich
genome.sph.umich.edu › wiki › Installing_MinGW_&_MSYS_on_Windows
Installing MinGW & MSYS on Windows - Genome Analysis Wiki
Enter c:/mingw as the path where MinGW is installed. It should confirm that you have make.exe installed, press any key to continue.
🌐
Medium
medium.com › @riash4101 › making-your-way-through-the-mingw32-make-tutorial-f356f1c2a131
Making your way through the mingw32-make — Tutorial | by Riya Sharma | Medium
February 25, 2025 - The most widely used version of make is the GNU make. It is a part of the GNU project. In order to install GNU make in your system, check developer tools in mingw-installation-manager.
🌐
Google Groups
groups.google.com › g › wx-users › c › -D6zjhdROqg › m › oorqD1xGBAAJ
Missing mingw32-make
Sometimes it's just a matter of matching the correct compiler / wxWidgets / libs to make it work, or researching about erros messages and changing some command line option in the makefile. It's the same process for any C/C++ library you may try to use in any platform. ... Hope it helps! ... Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message ... > Following the install.txt file, after typing > cd %WXWIN%\build\msw > mingw32-make -f makefile.gcc Make sure you have a clean path to the compiler and tools.
🌐
Google Groups
groups.google.com › g › microsoft.public.powerpoint › c › xeP53w6asw8
Download Make.exe For Mingw W64
You must follow the steps on the MSYS2 website to use the MSYS CLI to install the full MinGW-w64 toolchain(pacman -S --needed base-devel mingw-w64-ucrt-x86_64-toolchain), as well as all required prerequisites. The toolchain includes g++ and gdb. This compiler came from the MinGW-W64 builds project.
🌐
SourceForge
sourceforge.net › home › browse › mingw-w64 - for 32 and 64 bit windows › wiki2
MinGW-w64 - for 32 and 64 bit Windows / Wiki2 / Make
This is a binary package for GNU Make, patched for use with mingw-w64/w32. It contains 32 and 64-bit executables and has three identical files for each.
🌐
Reddit
reddit.com › r/learnprogramming › mingw compiler not running?
r/learnprogramming on Reddit: MinGW compiler not running?
August 18, 2021 -

I'm stuck on the installation process of CodeLite (IDE) and MinGW (GCC). Fairly new to learning C++ and the code won't execute.

The code won't build & execute on CodeLite and I get the following errors -

  1. 'make' is not recognized as an internal or external command, operable program or batch file (CodeLite)

  2. No targets specified and no makefile found (when I search for the 'make' on Command prompt)

And when I try to build and execute on CodeLite -

3. This app can't run on your PC (MinGW error)

What should I do? I'm no computer whiz, I don't know why I keep getting these errors, I spent my whole day trying to solve this by searching on google but I couldn't-