1LOCAL_PATH := $(call my-dir) 2 3ifneq (,$(findstring $(TARGET_DEVICE),toro torospr)) 4 5# Edify extension functions for doing modem (radio) updates on Toro devices. 6 7include $(CLEAR_VARS) 8 9LOCAL_MODULE_TAGS := optional 10LOCAL_C_INCLUDES += bootable/recovery 11LOCAL_SRC_FILES := recovery_updater.c update_cdma_modem.c 12 13# should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk 14LOCAL_MODULE := librecovery_updater_toro 15 16include $(BUILD_STATIC_LIBRARY) 17 18endif 19