I'm gonna plead ignorance so forgive me if I sound dumb.
If I go to my Build Configuration directory and type 'make clean', it only deletes the .elf file, not the object files. If I go to KDS and do a 'clean', I see in the console that it deletes the .elf file AND the objects. Not sure what's going on there.
My goal is to build the project from the command line. To do that, I used the command from your guide and it works great. But I can't get it to do a 'clean' only. To build, I used the build command below:
"c:\My Program Files\freescale\kds_3.0.0\eclipse\eclipsec.exe" -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data "..\..\..\KDS Workspaces" -build ATS_ANN_App --launcher.ini "c:\My Program files\Freescale\KDS_3.0.0\eclipse\kinetis-design-studio.ini" --launcher.suppressErrors
I changed -build to -clean, it didn't like that at all. I changed it to -cleanBuild and it does a clean then a build. Is there a way to make the above command line do a 'clean' only?