The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | # Copyright 2008 The Android Open Source Project |
2 | # | ||||
3 | LOCAL_PATH := $(call my-dir) | ||||
4 | include $(CLEAR_VARS) | ||||
5 | |||||
6 | LOCAL_MODULE := libmincrypt | ||||
7 | LOCAL_SRC_FILES := rsa.c sha.c | ||||
8 | include $(BUILD_STATIC_LIBRARY) | ||||
9 | |||||
10 | include $(CLEAR_VARS) | ||||
11 | |||||
12 | LOCAL_MODULE := libmincrypt | ||||
13 | LOCAL_SRC_FILES := rsa.c sha.c | ||||
14 | include $(BUILD_HOST_STATIC_LIBRARY) | ||||
15 | |||||
16 | |||||
17 | # TODO: drop the hyphen once these are checked in | ||||
18 | include $(LOCAL_PATH)/tools/Android.mk |