Hello
There are two problems in your .mak file:
1- the command line for the burner should be
$(BB) $(BBFLAGS) -F=.\prm\project.bbl
instead of
$(BB) $(BBFLAGS) -F=project.bbl
2- As you are using some I/O registers in your application you need to add the file
MC9S12XEP100.c to your project's source files.
Apparently in your make file you are not specifying the list of source files to link to the
application. So you may need to duplicate the file MC9S12XEP100.c from
{Install}\lib\hc12c\src into your project's Sources directory. Alternatively you have to change
your make file to the the linker you want to add a source file from {Install}\lib\hc12c\src to
your project.
CrasyCat