Android.mk
资源名称:ril.rar [点击查看]
上传用户:rftzhifu
上传日期:2017-02-21
资源大小:229k
文件大小:1k
源码类别:
android开发
开发平台:
Unix_Linux
- # Copyright 2006 The Android Open Source Project
- LOCAL_PATH:= $(call my-dir)
- include $(CLEAR_VARS)
- LOCAL_SRC_FILES:=
- ril.cpp
- ril_event.cpp
- LOCAL_SHARED_LIBRARIES :=
- libutils
- libcutils
- LOCAL_CFLAGS :=
- LOCAL_MODULE:= libril
- LOCAL_LDLIBS += -lpthread
- include $(BUILD_SHARED_LIBRARY)
- # For RdoServD which needs a static library
- # =========================================
- ifneq ($(ANDROID_BIONIC_TRANSITION),)
- include $(CLEAR_VARS)
- LOCAL_SRC_FILES:=
- ril.cpp
- LOCAL_STATIC_LIBRARIES :=
- libutils_static
- libcutils
- LOCAL_CFLAGS :=
- LOCAL_MODULE:= libril_static
- LOCAL_LDLIBS += -lpthread
- include $(BUILD_STATIC_LIBRARY)
- endif # ANDROID_BIONIC_TRANSITION