Hello
StarCore build tools executable are located in
{Install}\StarCore_Support\compiler\bin
Compiler can can started through scc.exe. Assembler is started through asmsc100.exe and linker through sc100-ld.exe.
CodeWarrior is not delivered with amake utility, so you have to use an external make utilits (for example GNU make or nmake).
You then have to create your make file with your rules for the application.
There are some example of make files for example
{Install}\StarCore_Support\compiler\src\rtlib\makefile
or
{Install}\(CodeWarrior_Examples)\StarCore_Examples\Drivers\Msc8101Drivers\Q001\demos\SerDemos\makefile.scc
The compiler provides an option to generate dependeny information in make file syntax. This option is -M [Filename] and is pretty useful when you are building from a make file.
I hope this helps.
CrasyCat