1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 5 LOCAL_SRC_FILES := \ 6 attr.c \ 7 cache.c \ 8 genl/genl.c \ 9 genl/family.c \ 10 handlers.c \ 11 msg.c \ 12 netlink.c \ 13 object.c \ 14 socket.c \ 15 dbg.c 16 17 LOCAL_C_INCLUDES += \ 18 external/libnl-headers 19 20 # Static Library 21 LOCAL_MODULE := libnl_2 22 LOCAL_MODULE_TAGS := optional 23 include $(BUILD_STATIC_LIBRARY) 24 25 ####################################### 26 # Shared library currently unavailiable 27 # * Netlink cache not implemented 28 # * Library is not thread safe 29 ####################################### 30 31