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 := pvsocketnode 8 9 10XINCDIRS += ../../../streaming/common/include ../../config/common 11 12XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 13 14 15SRCDIR := ../../src 16INCSRCDIR := ../../include 17 18SRCS := pvmf_socket_node.cpp \ 19 pvmf_socket_node_extension_interface.cpp \ 20 pvmf_socket_factory.cpp \ 21 pvmf_socket_port.cpp 22 23HDRS := pvmf_socket_node_extension_interface.h \ 24 pvmf_socket_factory.h \ 25 pvmf_socket_node.h \ 26 pvmf_socket_port.h \ 27 pvmf_socket_node_events.h 28 29 30include $(MK)/library.mk 31 32