blob: d948dd1008d896161150bc7e33fd3f3e25394d5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
LOCAL_PATH := $(call my-dir)
ifneq ($(TARGET_SIMULATOR),true)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := system.c popen.c
LOCAL_MODULE := libcrecovery
LOCAL_MODULE_TAGS := eng
include $(BUILD_STATIC_LIBRARY)
endif
|