Here is what I've done so far:
* In Source/Device/app/common added:
MK60DZ10.h
MK60F12.h
MK60F15.h
* Everywhere there was:
#ifdef MCU_MK70F12
there is now
#if defined(MCU_MK70F12) || defined(MCU_MK60F12)
or
#ifndef MCU_MK70F12
becomes:
#if !defined(MCU_MK70F12) && !defined(MCU_MK60F12)
Everywhere there is a naked printf I put put an ifdef:
#ifdef SERIAL_DEBUG
printf(...);
#endif
Lots of changes to register names in Source/Device/app/common/main_kinetis.c (attached).
Additional changes to code described in attached file.