summaryrefslogtreecommitdiffstats
path: root/cmds/keystore/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/keystore/Android.mk')
-rw-r--r--cmds/keystore/Android.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/cmds/keystore/Android.mk b/cmds/keystore/Android.mk
new file mode 100644
index 0000000..3daf44e
--- /dev/null
+++ b/cmds/keystore/Android.mk
@@ -0,0 +1,22 @@
+ifneq ($(TARGET_SIMULATOR),true)
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ netkeystore.c keymgmt.c
+
+LOCAL_C_INCLUDES := \
+ $(call include-path-for, system-core)/cutils \
+ external/openssl/include
+
+LOCAL_SHARED_LIBRARIES := \
+ libcutils libssl
+
+LOCAL_STATIC_LIBRARIES :=
+
+LOCAL_MODULE:= keystore
+
+include $(BUILD_EXECUTABLE)
+
+endif # !simulator))