Home | History | Annotate | Download | only in linux_3gpp
      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 := pvstreamingmanagernode_3gpp
      8 
      9 XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     10 
     11 
     12 XINCDIRS += ../../../common/include ../../../jitterbuffernode/include ../../../jitterbuffernode/include ../../../medialayernode/include ../../../../../protocols/rtp/src ../../../../common/include ../../../../../protocols/sdp/common/include ../../../../../fileformats/asf/parser/include ../../../../../fileformats/rmff_type_specific_parser/src ../../../../../protocols/rdt_parser/realchallenge/include ../../../../../pvmi/content_policy_manager/include ../../../../../pvmi/content_policy_manager/plugins/common/include ../../../../../nodes/pvrtppacketsourcenode/include ../../../../../pvmi/pvmf/include ../../../../../protocols/rtp_payload_parser/rfc_3640/include ../../../../../nodes/pvpvr/include ../../../../../nodes/pvpvr/src ../../../../../nodes/pvpvrnode/include ../../../../../nodes/pvpvrnode/src ../../../../../fileformats/pvr/composer/include
     13 # For picking the configurations of JB and ML in the pvmf_sm_config.h
     14 XINCDIRS += ../../config/3gpp
     15 XINCDIRS += ../../plugins/common/include
     16 
     17 XINCDIRS += ../../../../../protocols/rtsp_client_engine/src
     18 XINCDIRS += ../../plugins/rtspunicast/include
     19 
     20 
     21 
     22 SRCDIR := ../../src
     23 INCSRCDIR := ../../include
     24 
     25 # compose final src list for actual build
     26 #BCH
     27 
     28 SRCS :=  pvmf_sm_node_factory.cpp pvmf_streaming_manager_node.cpp 		
     29 
     30 #FSP Base
     31 SRCS +=	../config/3gpp/pvmf_sm_fsp_registry.cpp 
     32 SRCS +=	../plugins/common/src/pvmf_sm_fsp_base_impl.cpp 
     33 SRCS +=	../plugins/common/src/pvmf_sm_fsp_base_cpm_support.cpp 
     34 
     35 #RTSP Unicast Plugin
     36 SRCS +=	../plugins/rtspunicast/src/pvmf_sm_rtsp_unicast_node_factory.cpp 
     37 SRCS +=	../plugins/rtspunicast/src/pvmf_sm_fsp_rtsp_unicast.cpp 
     38 
     39 HDRS :=  pvmf_sm_node_events.h \
     40          pvmf_sm_node_factory.h
     41 
     42 include $(MK)/library.mk
     43 
     44