dllcrt2.o C:\Users\master123467\Documents\download\master123467\irrQuake\ld No such file: No such file or directory.
C:\Users\master123467\Documents\download\master123467\irrQuake\Makefile.win [Build Error] [irrlicht.dll] Error 1
Compiler: Default compiler
Building Makefile: "C:\Users\master123467\Documents\download\master123467\irrQuake\Makefile.win"
Executing make...
make.exe -f "C:\Users\master123467\Documents\download\master123467\irrQuake\Makefile.win" all
dllwrap.exe --output-def libirrlicht.def --driver-name c++ --implib libirrlicht.a main.o irrlicht_private.res -L"C:/Dev-Cpp/lib" -L"C:/Irrlicht/lib/Win32-gcc" -L"C:/Program Files/NewtonSDK/sdk/dll" -irrlicht -o irrlicht.dll
ld: dllcrt2.o: No such file: No such file or directory
dllwrap.exe: no export definition file provided.
Creating one, but that may not be what you want
dllwrap.exe: c++ exited with status 1
make.exe: *** [irrlicht.dll] Error 1
Execution terminated
crt means C RunTime so the compiler (actually the linker being part of the compiler suite) cannot find the required C runtime library. Probably a compiler setup problem. Or you're using files compiled for MSVC which cannot be mixed with gcc files.