Android.mk
资源名称:ril.rar [点击查看]
上传用户:rftzhifu
上传日期:2017-02-21
资源大小:229k
文件大小:1k
源码类别:
android开发
开发平台:
Unix_Linux
- # Copyright 2006 The Android Open Source Project
- # XXX using libutils for simulator build only...
- #
- LOCAL_PATH:= $(call my-dir)
- include $(CLEAR_VARS)
- LOCAL_SRC_FILES:=
- reference-ril.c
- atchannel.c
- misc.c
- at_tok.c
- LOCAL_SHARED_LIBRARIES :=
- libcutils libutils libril
- # for asprinf
- LOCAL_CFLAGS := -D_GNU_SOURCE
- LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
- ifeq ($(TARGET_DEVICE),sooner)
- LOCAL_CFLAGS += -DOMAP_CSMI_POWER_CONTROL -DUSE_TI_COMMANDS
- endif
- ifeq ($(TARGET_DEVICE),surf)
- LOCAL_CFLAGS += -DPOLL_CALL_STATE -DUSE_QMI
- endif
- ifeq ($(TARGET_DEVICE),dream)
- LOCAL_CFLAGS += -DPOLL_CALL_STATE -DUSE_QMI
- endif
- ifeq (foo,foo)
- #build shared library
- LOCAL_SHARED_LIBRARIES +=
- libcutils libutils
- LOCAL_LDLIBS += -lpthread
- LOCAL_CFLAGS += -DRIL_SHLIB
- LOCAL_MODULE:= libreference-ril
- include $(BUILD_SHARED_LIBRARY)
- else
- #build executable
- LOCAL_SHARED_LIBRARIES +=
- libril
- LOCAL_MODULE:= reference-ril
- include $(BUILD_EXECUTABLE)
- endif