Android.mk
上传用户:rftzhifu
上传日期:2017-02-21
资源大小:229k
文件大小:1k
源码类别:

android开发

开发平台:

Unix_Linux

  1. # Copyright 2006 The Android Open Source Project
  2. # XXX using libutils for simulator build only...
  3. #
  4. LOCAL_PATH:= $(call my-dir)
  5. include $(CLEAR_VARS)
  6. LOCAL_SRC_FILES:= 
  7.     reference-ril.c 
  8.     atchannel.c 
  9.     misc.c 
  10.     at_tok.c
  11. LOCAL_SHARED_LIBRARIES := 
  12. libcutils libutils libril
  13. # for asprinf
  14. LOCAL_CFLAGS := -D_GNU_SOURCE
  15. LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
  16. ifeq ($(TARGET_DEVICE),sooner)
  17.   LOCAL_CFLAGS += -DOMAP_CSMI_POWER_CONTROL -DUSE_TI_COMMANDS 
  18. endif
  19. ifeq ($(TARGET_DEVICE),surf)
  20.   LOCAL_CFLAGS += -DPOLL_CALL_STATE -DUSE_QMI
  21. endif
  22. ifeq ($(TARGET_DEVICE),dream)
  23.   LOCAL_CFLAGS += -DPOLL_CALL_STATE -DUSE_QMI
  24. endif
  25. ifeq (foo,foo)
  26.   #build shared library
  27.   LOCAL_SHARED_LIBRARIES += 
  28. libcutils libutils
  29.   LOCAL_LDLIBS += -lpthread
  30.   LOCAL_CFLAGS += -DRIL_SHLIB
  31.   LOCAL_MODULE:= libreference-ril
  32.   include $(BUILD_SHARED_LIBRARY)
  33. else
  34.   #build executable
  35.   LOCAL_SHARED_LIBRARIES += 
  36. libril
  37.   LOCAL_MODULE:= reference-ril
  38.   include $(BUILD_EXECUTABLE)
  39. endif