Hello
This is a normal behavior for the IDE.
When you start building a project, the IDE will first evaluate whether the object files (.o) are up to date.
In order to check that it will compare the modification date of the .c files and all files included in there with the modification date of the object file.
If the source file is not available this cannot be done and CodeWarrior is not able to build (make) the project.
If you have all the object files available, you may want to start the link process through command line.
This will not require any source or header file.
CrasyCat