10 lines
273 B
Makefile
Executable File
10 lines
273 B
Makefile
Executable File
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := ril_shim.c
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libbinder libutils
|
|
LOCAL_MODULE := libril_shim
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_CLASS := SHARED_LIBRARIES
|
|
include $(BUILD_SHARED_LIBRARY)
|