1 LOCAL_PATH := $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_SRC_FILES := \ 5 src/cpm.cpp \ 6 src/pvmf_cpmplugin_factory_registry.cpp 7 8 9 LOCAL_MODULE := libcpm 10 11 LOCAL_CFLAGS := $(PV_CFLAGS) 12 13 14 15 LOCAL_STATIC_LIBRARIES := 16 17 LOCAL_SHARED_LIBRARIES := 18 19 LOCAL_C_INCLUDES := \ 20 $(PV_TOP)/pvmi/content_policy_manager/src \ 21 $(PV_TOP)/pvmi/content_policy_manager/include \ 22 $(PV_TOP)/pvmi/content_policy_manager/include \ 23 $(PV_TOP)/pvmi/content_policy_manager/plugins/common/include \ 24 $(PV_TOP)/pvmi/content_policy_manager/plugins/oma1/r75/include \ 25 $(PV_TOP)/nodes/common/include \ 26 $(PV_INCLUDES) 27 28 LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 29 30 LOCAL_COPY_HEADERS := \ 31 include/cpm.h \ 32 include/cpm_types.h \ 33 include/cpm_plugin_registry.h \ 34 include/pvmf_cpmplugin_factory_registry.h 35 36 include $(BUILD_STATIC_LIBRARY) 37