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