I am trying to integrate an external tool that uses make as its build system into my Android project.
Specifically, I want to invoke make within the Android.bp file so that the Makefile from this tool is executed during the build process.
Should I use genrule, or is there a better approach for this use case?
Thank you for your help!