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 := pvdownloadmanagernode 8 9 10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 11 12 13 14XINCDIRS += \ 15 ../../../common/include \ 16 ../../../../pvmi/pvmf/include \ 17 ../../../streaming/common/include 18 19 20 21 22SRCDIR := ../../src 23INCSRCDIR := ../../include 24 25SRCS := \ 26 pvmf_downloadmanager_factory.cpp \ 27 pvmf_downloadmanager_node.cpp \ 28 pvmf_filebufferdatastream_factory.cpp \ 29 pvmf_memorybufferdatastream_factory.cpp 30 31HDRS := \ 32 pvmf_downloadmanager_defs.h \ 33 pvmf_downloadmanager_factory.h \ 34 pvmf_filebufferdatastream_factory.h \ 35 pvmf_memorybufferdatastream_factory.h 36 37 38include $(MK)/library.mk 39