Use mingw32-make in build-MinGW-W64.bat

Not all mingw-w64 toolchains on windows are guaranteed to have make, but
virtually all of them have mingw32-make. MSYS2 UCRT does not provide
make, but does provide mingw32-make. So users who have added UCRT to the
PATH (Not advisable!) but not msys64 will have errors about a missing
make.

VSCode's tasks.json uses mingw32-make anyway, so it's better to stay
consistent with it.
This commit is contained in:
Peter0x44
2024-12-19 00:32:15 +00:00
parent 59addb2272
commit d32dda4d1e

View File

@@ -1,5 +1,5 @@
cd build
premake5.exe gmake2
cd ..
make SHELL=CMD clean
pause
mingw32-make SHELL=CMD clean
pause