FrickeFresh
FrickeFresh

Reputation: 1758

What file does ndk-build look for

When you use make the idea is you have a Makefile that you start the building off with. With ndk-build it according to the docs just runs $GNUMAKE -f <ndk>/build/core/build-local.mk but like is there a file in my project I need to have or what files is is looking for.

Upvotes: 0

Views: 31

Answers (1)

Alex Cohn
Alex Cohn

Reputation: 57203

Yes, typically it expects to find your project makefile as jni/Android.mk, but you have lots of freedom if you need.

Upvotes: 1

Related Questions