summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bestas <mikeioannina@gmail.com>2015-08-28 17:00:41 -0700
committerAbhisek Devkota <ciwrl@cyanogenmod.com>2015-08-28 17:44:36 -0700
commit917e2910c1470d7a1941fa093ce79130cd11374b (patch)
tree4340ca15f1edc2cf4626a568f85044d2f2400992
parentf6ebac34baf99592f414a228490c2625a0fa8e37 (diff)
downloadandroid_packages_apps_Gello-917e2910c1470d7a1941fa093ce79130cd11374b.tar.gz
android_packages_apps_Gello-917e2910c1470d7a1941fa093ce79130cd11374b.tar.bz2
android_packages_apps_Gello-917e2910c1470d7a1941fa093ce79130cd11374b.zip
Add makefile logic
Allow user to specify WITH_GELLO_PREBUILT to include the prebuilt version of this application. TODO:Makefile logic for src directory (ninja) Change-Id: Iaa166629365833d50ee81b7965f19ed12a1ccc1c
-rw-r--r--Android.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 00000000..3e825336
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,7 @@
+LOCAL_PATH := $(call my-dir)
+
+ifneq ($(WITH_GELLO_PREBUILT),true)
+include $(LOCAL_PATH)/src/Android.mk
+else
+include $(LOCAL_PATH)/prebuilt/Android.mk
+endif