mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
17 lines
266 B
Makefile
17 lines
266 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := final-key
|
|
|
|
LOCAL_SRC_FILES := \
|
|
kpd_jni.c
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../sha $(LOCAL_PATH)/../aes
|
|
|
|
LOCAL_STATIC_LIBRARIES := aes sha
|
|
|
|
LOCAL_LDLIBS := -llog
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|