| OLD | NEW |
| (Empty) |
| 1 # Copyright 2006 The Android Open Source Project | |
| 2 | |
| 3 LOCAL_PATH:= $(call my-dir) | |
| 4 | |
| 5 local_shared_libraries := \ | |
| 6 libssl \ | |
| 7 libcrypto | |
| 8 | |
| 9 local_c_includes := | |
| 10 local_c_flags := | |
| 11 | |
| 12 local_additional_dependencies := $(LOCAL_PATH)/android-config.mk $(LOCAL_PATH)/A
pps.mk | |
| 13 | |
| 14 include $(LOCAL_PATH)/Apps-config.mk | |
| 15 | |
| 16 include $(CLEAR_VARS) | |
| 17 LOCAL_MODULE:= openssl | |
| 18 LOCAL_MODULE_TAGS := optional | |
| 19 LOCAL_SRC_FILES := $(target_src_files) | |
| 20 LOCAL_SHARED_LIBRARIES := $(local_shared_libraries) | |
| 21 LOCAL_C_INCLUDES := $(target_c_includes) | |
| 22 LOCAL_CFLAGS := $(target_c_flags) | |
| 23 LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies) | |
| 24 include $(LOCAL_PATH)/android-config.mk | |
| 25 include $(BUILD_EXECUTABLE) | |
| 26 | |
| 27 include $(CLEAR_VARS) | |
| 28 LOCAL_MODULE:= openssl | |
| 29 LOCAL_MODULE_TAGS := optional | |
| 30 LOCAL_SRC_FILES := $(host_src_files) | |
| 31 LOCAL_SHARED_LIBRARIES := $(local_shared_libraries) | |
| 32 LOCAL_C_INCLUDES := $(host_c_includes) | |
| 33 LOCAL_CFLAGS := $(host_c_flags) | |
| 34 LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies) | |
| 35 include $(LOCAL_PATH)/android-config.mk | |
| 36 include $(BUILD_HOST_EXECUTABLE) | |
| OLD | NEW |