make.exe: *** No rule to make target `Debug'. Stop.
Process terminated with status 2 (0 minutes, 30 seconds)
0 errors, 0 warnings
This somewhat confused me, I did not create one. Do I need to provide a makefile or does C::B provide one?
You do not need a makefile with C::B, but I always used one.
You can add or remove build targets under Project/Poperties.
You can select the acitve build target in the tab at the top.
Your makefile has only an 'all' target, no Debug target.
You can create an 'all' target and switch to it, or change the call of the
make program under Project/Build Options.
The source indeed did not change, but that should not matter with a rebuild, should it?
Don't no how C::B handles a rebuild without makefile.
With make it probably does a 'clean' and then 'all'.
The make program only does something if your sources had changed,
though it fails sometimes.