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