tags:

views:

38

answers:

1

Normaly MinGW (GCC C Compiler) recompiles only files that have beeen changed. But I fear this does not work properly. So I wan't to recompile everything at each "Compile All" or "Compile Project". Is there any option to accomplish this ?

+1  A: 

First run a make clean command and then a make command. I think that the MinGW make is called mingw32-make.exe

rpg