5082299146
Change-Id: I9405e701887fc83c422c63c1dbf5ff087fff880d
14 lines
247 B
Makefile
14 lines
247 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := system.c popen.c
|
|
LOCAL_MODULE := libcrecovery
|
|
LOCAL_MODULE_TAGS := eng
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
endif
|
|
endif
|