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

android开发

开发平台:

Unix_Linux

  1. # Copyright 2006 The Android Open Source Project
  2. LOCAL_PATH:= $(call my-dir)
  3. include $(CLEAR_VARS)
  4. LOCAL_SRC_FILES:= 
  5.     ril.cpp 
  6.     ril_event.cpp
  7. LOCAL_SHARED_LIBRARIES := 
  8.     libutils 
  9.     libcutils 
  10. LOCAL_CFLAGS := 
  11. LOCAL_MODULE:= libril
  12. LOCAL_LDLIBS += -lpthread
  13. include $(BUILD_SHARED_LIBRARY)
  14. # For RdoServD which needs a static library
  15. # =========================================
  16. ifneq ($(ANDROID_BIONIC_TRANSITION),)
  17. include $(CLEAR_VARS)
  18. LOCAL_SRC_FILES:= 
  19.     ril.cpp
  20. LOCAL_STATIC_LIBRARIES := 
  21.     libutils_static 
  22.     libcutils
  23. LOCAL_CFLAGS := 
  24. LOCAL_MODULE:= libril_static
  25. LOCAL_LDLIBS += -lpthread
  26. include $(BUILD_STATIC_LIBRARY)
  27. endif # ANDROID_BIONIC_TRANSITION