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 := pvcommsionode
      8 
      9 
     10 XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     11 
     12 
     13 XINCDIRS += ../../../../pvmi/pvmf/include ../../../../nodes/common/include ../../include 
     14 
     15 
     16 
     17 
     18 
     19 SRCDIR := ../../src
     20 INCSRCDIR := ../../src
     21 
     22 SRCS := pv_comms_io_node_port.cpp \
     23 	pv_comms_io_node.cpp 
     24 
     25 HDRS := pv_comms_io_node.h \
     26         ../include/pv_comms_io_node_factory.h \
     27         ../include/pv_comms_io_node_events.h
     28 
     29 include $(MK)/library.mk
     30 
     31