The Android build system is non-recursive, so it is not set up to recursively execute another makefile. I am sure you could hack something up such as collecting all files in your library dist as a dependency on a dummy timestamp file, to have a rule run to simply invoke a sub-makefile if any of those change. But this is not how the build system is intended to be used, so we wouldn't accept something like that in to the official platform.
On Thu, Dec 18, 2008 at 8:50 AM, Boris Daskalov <[email protected]>wrote: > > I have to integrate a library into the Android build process and run > some tests to verify that it works properly. Looking at the stuff in the > "external/" directory I see that all libraries are compiled through > "Android.mk" files. I want to make the Android build system to call the > build system of the library I am building. > > Is there a way I can do that? > > Best Regards. > Boris > > > > > > > -- Dianne Hackborn Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support. All such questions should be posted on public forums, where I and others can see and answer them. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "android-framework" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-framework?hl=en -~----------~----~----~----~------~----~------~--~---
