diff options
Diffstat (limited to 'tools/root.make')
| -rw-r--r-- | tools/root.make | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/root.make b/tools/root.make index 4e0ca7c..2deae8c 100644 --- a/tools/root.make +++ b/tools/root.make @@ -132,8 +132,12 @@ else # core include $(ROOTDIR)/firmware/target/hosted/samsungypr/ypr1/ypr1.make endif - ifneq (,$(findstring android, $(APP_TYPE))) - include $(ROOTDIR)/android/android.make + ifneq (,$(findstring android_ndk, $(APP_TYPE))) + include $(ROOTDIR)/firmware/target/hosted/ibasso/android_ndk.make + else + ifneq (,$(findstring android, $(APP_TYPE))) + include $(ROOTDIR)/android/android.make + endif endif ifneq (,$(findstring pandora, $(MODELNAME))) |