I have a project (Apollo 3) that was based upon one of the Ambiq examples. I have an issue with the makefile for the project. What I see is that Make removes all the dependency files after each build, this means that if only a header file is changed the project is not rebuilt.
Removing generated files is how Make is designed to work. How can I update my makefile to NOT remove those .d files?
Sid