1# Get the current local path as the first operation 2LOCAL_PATH := $(call get_makefile_dir) 3 4# Clear out the variables used in the local makefiles 5include $(MK)/clear.mk 6 7TARGET := pvfileoutputnode 8 9 10 11 12XINCDIRS += ../../include ../../../../pvmi/pvmf/include ../../../common/include 13 14 15 16 17 18SRCDIR := ../../src 19INCSRCDIR := ../../include 20 21SRCS := pvmf_fileoutput_inport.cpp \ 22 pvmf_fileoutput_node.cpp \ 23 pvmf_fileoutput_factory.cpp \ 24 pvmf_fileoutput_node_cap_config.cpp 25 26HDRS := pvmf_fileoutput_config.h\ 27 pvmf_fileoutput_factory.h 28 29 30include $(MK)/library.mk 31 32