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 := protocolenginenode 8 9XCPPFLAGS += -DBUILD_PROGRESSIVE_DOWNLOAD_PLUGIN -DBUILD_PROGRESSIVE_STREAMING_PLUGIN -DBUILD_FASTTRACK_DOWNLOAD_PLUGIN -DBUILD_WMHTTPSTREAMING_PLUGIN -DBUILD_SHOUTCAST_PLUGIN 10 11XINCDIRS += ../../config/$(BUILD_ARCH) ../../config/linux 12XINCDIRS += ../../include ../../base/src ../../protocol_common/src ../../download_protocols/common/src ../../download_protocols/progressive_download/src ../../download_protocols/progressive_streaming/src ../../download_protocols/shoutcast/src ../../download_protocols/fasttrack_download/src ../../wm_http_streaming/src 13 14SRCDIR := ../../base/src 15INCSRCDIR := ../../include 16 17SRCS := pvmf_protocol_engine_node.cpp \ 18 pvmf_protocol_engine_factory.cpp \ 19 pvmf_protocol_engine_port.cpp \ 20 pvmf_protocol_engine_node_registry.cpp \ 21 ../../protocol_common/src/pvmf_protocol_engine_common.cpp \ 22 ../../protocol_common/src/pvmf_protocol_engine_node_common.cpp \ 23 ../../download_protocols/common/src/pvdl_config_file.cpp \ 24 ../../download_protocols/common/src/pvmf_protocol_engine_download_common.cpp \ 25 ../../download_protocols/common/src/pvmf_protocol_engine_node_download_common.cpp \ 26 ../../download_protocols/progressive_download/src/pvmf_protocol_engine_progressive_download.cpp \ 27 ../../download_protocols/progressive_download/src/pvmf_protocol_engine_node_progressive_download.cpp \ 28 ../../download_protocols/progressive_download/src/pvmf_protocol_engine_node_progressive_download_container_factory.cpp \ 29 ../../download_protocols/progressive_streaming/src/pvmf_protocol_engine_node_progressive_streaming.cpp \ 30 ../../download_protocols/progressive_streaming/src/pvmf_protocol_engine_node_progressive_streaming_container_factory.cpp \ 31 ../../download_protocols/shoutcast/src/pvmf_protocol_engine_shoutcast.cpp \ 32 ../../download_protocols/shoutcast/src/pvmf_protocol_engine_node_shoutcast.cpp \ 33 ../../download_protocols/shoutcast/src/pvmf_protocol_engine_node_shoutcast_container_factory.cpp \ 34 ../../download_protocols/fasttrack_download/src/pvmf_protocol_engine_fasttrack_download.cpp \ 35 ../../download_protocols/fasttrack_download/src/pvmf_protocol_engine_node_fasttrack_download.cpp \ 36 ../../download_protocols/fasttrack_download/src/pvmf_protocol_engine_node_fasttrack_download_container_factory.cpp \ 37 ../../wm_http_streaming/src/pvmf_protocol_engine_wmhttpstreaming.cpp \ 38 ../../wm_http_streaming/src/pvmf_protocol_engine_node_wmhttpstreaming.cpp \ 39 ../../wm_http_streaming/src/pvms_http_streaming_parser.cpp \ 40 ../../wm_http_streaming/src/xml_composer.cpp \ 41 ../../wm_http_streaming/src/pvmf_protocol_engine_node_wm_http_streaming_container_factory.cpp 42 43 44HDRS := pvmf_protocol_engine_factory.h \ 45 pvmf_protocol_engine_defs.h \ 46 pvmf_protocol_engine_node_extension.h \ 47 pvmf_protocol_engine_command_format_ids.h \ 48 pvmf_protocol_engine_node_events.h 49 50include $(MK)/library.mk 51