8fdbf97652
The e=3 and e=65537 implementations are nearly identical, refactor them down into one. Change-Id: I537a368a6cc195f373b9354d7472957fd683beea
18 lines
413 B
Makefile
18 lines
413 B
Makefile
# Copyright 2008 The Android Open Source Project
|
|
#
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libmincrypt
|
|
LOCAL_SRC_FILES := rsa.c sha.c sha256.c
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libmincrypt
|
|
LOCAL_SRC_FILES := rsa.c sha.c sha256.c
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
|
|
include $(LOCAL_PATH)/tools/Android.mk \
|
|
$(LOCAL_PATH)/test/Android.mk
|