10 lines
187 B
Makefile
10 lines
187 B
Makefile
|
LOCAL_PATH:= $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_SRC_FILES:= ril-wrapper.c
|
||
|
LOCAL_SHARED_LIBRARIES := liblog libbinder
|
||
|
LOCAL_MODULE:= ril-wrapper
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|