Home | History | Annotate | Download | only in make
      1 # Get the current local path as the first operation
      2 LOCAL_PATH := $(call get_makefile_dir)
      3 
      4 # Clear out the variables used in the local makefiles
      5 include $(MK)/clear.mk
      6 
      7 TARGET := pvsocketnode
      8 
      9 
     10 XINCDIRS +=  ../../../streaming/common/include  ../../config/common
     11 
     12 XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     13 
     14 
     15 SRCDIR := ../../src
     16 INCSRCDIR := ../../include
     17 
     18 SRCS := pvmf_socket_node.cpp \
     19         pvmf_socket_node_extension_interface.cpp \
     20 	pvmf_socket_factory.cpp \
     21 	pvmf_socket_port.cpp
     22 
     23 HDRS := 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 
     30 include $(MK)/library.mk
     31 
     32