Hello
I have few projects under uvision which were originally exported from Modus tool box v2.4.
The project requires custom makefiles to support the build/compilation which works fine in modus tool box.
How do I add or invoke makefile (developed for the project) while building in Keil u vision.
I don't believe it is possible to directly invoke a makefile within MDK, however you could just use the makefile from the command line. Add the compiler folder (//Keil_dir/ARM/ARMCLANG/bin) to the path, and verify you can invoke it (armclang --version).
It would also be possible to create a menu option to invoke this directly within the IDE:https://developer.arm.com/documentation/101407/0538/Utilities/Run-External-Programs
Regards, Ronan