android mk

  1. #编译静态库  
  2. LOCAL_PATH := $(call my-dir)  
  3. include $(CLEAR_VARS)  
  4. LOCAL_MODULE = libhellos  
  5. LOCAL_CFLAGS = $(L_CFLAGS)  
  6. LOCAL_SRC_FILES = hellos.c  
  7. LOCAL_C_INCLUDES = $(INCLUDES)  
  8. LOCAL_SHARED_LIBRARIES := libcutils  
  9. LOCAL_COPY_HEADERS_TO := libhellos  
  10. LOCAL_COPY_HEADERS := hellos.h  
  11. include $(BUILD_STATIC_LIBRARY)  
  12.   
  13. #编译动态库  
  14. LOCAL_PATH := $(call my-dir)  
  15. include $(CLEAR_VARS)  
  16. LOCAL_MODULE = libhellod  
  17. LOCAL_CFLAGS = $(L_CFLAGS)  
  18. LOCAL_SRC_FILES = hellod.c  
  19. LOCAL_C_INCLUDES = $(INCLUDES)  
  20. LOCAL_SHARED_LIBRARIES := libcutils  
  21. LOCAL_COPY_HEADERS_TO := libhellod  
  22. LOCAL_COPY_HEADERS := hellod.h  
  23. include $(BUILD_SHARED_LIBRARY)  
  24.   
  25. #使用静态库  
  26. LOCAL_PATH := $(call my-dir)  
  27. include $(CLEAR_VARS)  
  28. LOCAL_MODULE := hellos  
  29. LOCAL_STATIC_LIBRARIES := libhellos  
  30. LOCAL_SHARED_LIBRARIES :=  
  31. LOCAL_LDLIBS += -ldl  
  32. LOCAL_CFLAGS := $(L_CFLAGS)  
  33. LOCAL_SRC_FILES := mains.c  
  34. LOCAL_C_INCLUDES := $(INCLUDES)  
  35. include $(BUILD_EXECUTABLE)  
  36.   
  37. #使用动态库  
  38. LOCAL_PATH := $(call my-dir)  
  39. include $(CLEAR_VARS)  
  40. LOCAL_MODULE := hellod  
  41. LOCAL_MODULE_TAGS := debug  
  42. #使用第三方库
  43. LOCAL_SHARED_LIBRARIES := libc libcutils libhellod  
  44. LOCAL_LDLIBS += -ldl  
  45. LOCAL_CFLAGS := $(L_CFLAGS)  
  46. LOCAL_SRC_FILES := maind.c  
  47. LOCAL_C_INCLUDES := $(INCLUDES)  
  48. include $(BUILD_EXECUTABLE)  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值