Hello
If you are building from the IDE, you cannot change the location of the generates object files.
The IDE request the object files to be located in the project _Data directory.
If you need to get the files some other places I see only 2 solutions:
1- You build from batch using a make file. That means you need to convert your project to a make file
and build it using a make utility. You can use either the make.exe delivered with HC08 tools or
any other make utility (gnu make, nmake, ....).
Note that in that case you have to create your make file manually.
2- You activate the "BatchRunner PostLinker" in the "Target Settings" panel and run a batch file at the end
of the build process. In that batch file you can copy all object file from their original directory to the
final one.
I hope this helps.
CrasyCat