mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
15 lines
186 B
Makefile
15 lines
186 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := sha
|
|
|
|
LOCAL_SRC_FILES := \
|
|
sha1.c \
|
|
sha2.c \
|
|
hmac.c
|
|
|
|
LOCAL_CFLAGS := -DUSE_SHA256
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|