Code::Blocks rev 1754.
I tried to build a project using a custom makefile with no luck, while rebuilding worked nicely. Looking at the compilergcc.cpp, I see in the CompilerGCC::ReBuild method (my comments) :
if(UseMake())
{
//make custom makefile
}
else
{
//use direct commands
}
The above is missing from the CompilerGCC::Build method, which makes selecting Menu->Build->Build to only compile using the queued commands even if the user has selected to use a custom Makefile.
Is this intentional?