1 LOCAL_PATH := $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_SRC_FILES := \ 5 src/pvmf_fileoutput_inport.cpp \ 6 src/pvmf_fileoutput_node.cpp \ 7 src/pvmf_fileoutput_factory.cpp \ 8 src/pvmf_fileoutput_node_cap_config.cpp 9 10 11 LOCAL_MODULE := libpvfileoutputnode 12 13 LOCAL_CFLAGS := $(PV_CFLAGS) 14 15 16 17 LOCAL_STATIC_LIBRARIES := 18 19 LOCAL_SHARED_LIBRARIES := 20 21 LOCAL_C_INCLUDES := \ 22 $(PV_TOP)/nodes/pvfileoutputnode/src \ 23 $(PV_TOP)/nodes/pvfileoutputnode/include \ 24 $(PV_TOP)/nodes/pvfileoutputnode/include \ 25 $(PV_TOP)/pvmi/pvmf/include \ 26 $(PV_TOP)/nodes/common/include \ 27 $(PV_INCLUDES) 28 29 LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 30 31 LOCAL_COPY_HEADERS := \ 32 include/pvmf_fileoutput_config.h \ 33 include/pvmf_fileoutput_factory.h 34 35 include $(BUILD_STATIC_LIBRARY) 36