1ifneq ($(TARGET_SIMULATOR),true) 2ifeq ($(TARGET_ARCH),arm) 3 4LOCAL_PATH := $(call my-dir) 5include $(CLEAR_VARS) 6 7# librecovery_ui_htc is a static library included by all the recovery 8# UI libraries for specific devices (passion, sapphire, dream). It 9# knows how to recover the log stored in the cache partition when a 10# radio or hboot update is done. 11 12LOCAL_SRC_FILES := log_recovery.c 13LOCAL_C_INCLUDES += bootable/recovery 14LOCAL_MODULE := librecovery_ui_htc 15include $(BUILD_STATIC_LIBRARY) 16 17include $(CLEAR_VARS) 18 19# librecovery_update_htc is a set of edify extension functions for 20# doing radio and hboot updates on HTC devices. 21 22LOCAL_MODULE_TAGS := optional 23 24LOCAL_SRC_FILES := recovery_updater.c firmware.c bootloader.c 25LOCAL_STATIC_LIBRARIES += libmtdutils 26LOCAL_C_INCLUDES += bootable/recovery 27LOCAL_MODULE := librecovery_updater_htc 28include $(BUILD_STATIC_LIBRARY) 29 30endif # TARGET_ARCH == arm 31endif # !TARGET_SIMULATOR 32