The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [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 | |
The Android Open Source Project | 8ac3a13 | 2009-01-20 14:04:01 -0800 | [diff] [blame] | 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 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 17 | # TODO: drop the hyphen once these are checked in |
| 18 | include $(LOCAL_PATH)/tools/Android.mk |