Hi Eric,
In 8/16bit Codewarrior Linker Parameter file, you can add an "HEXFILE" command. This allows you to link, together with the code of the current application, with an external s-record. Both the s-record from your project and the s-record linked with the HEXFILE command will be downloaded into your target!
This is useful if you wish to program your device with two applications in one single programming time. This becomes very handy for example when you want to include in your device memory, a bootloader to be used in the future. One single programming effort will burn two s-records.
Info on this very simple to use command, can be found on the Build_Tools_Utilities manual, search the document with keyword “HEXFILE”, you can see a section detail this issue.
For example in application prm file, add below. The boot code will be inserted to application s19 file
HEXFILE boot.s19
(boot.s19 is located in the current project folder root path)