summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2013-02-19 17:29:18 -0800
committerJeff Sharkey <jsharkey@android.com>2013-02-19 18:08:35 -0800
commitef946f3ae80556ab221265c0bf1c560683ea27f6 (patch)
tree1075b9a5a6f58c8a1333aac666124f40ba40fa1f /Android.mk
parent1a4f172df720edcc97ca86838910d3be557a5225 (diff)
downloadandroid_packages_apps_Terminal-ef946f3ae80556ab221265c0bf1c560683ea27f6.tar.gz
android_packages_apps_Terminal-ef946f3ae80556ab221265c0bf1c560683ea27f6.tar.bz2
android_packages_apps_Terminal-ef946f3ae80556ab221265c0bf1c560683ea27f6.zip
Initial code for Terminal app, with JNI glue.
Change-Id: I4b2ecb2eef9bef7a8236391d19a3708751a7c71d
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..99f8214
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,14 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(call all-subdir-java-files)
+
+LOCAL_JNI_SHARED_LIBRARIES := libjni_terminal
+
+LOCAL_PACKAGE_NAME := Terminal
+
+include $(BUILD_PACKAGE)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))