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 := pvrtsp_cli_eng_node 8 9 10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 11 12 13XINCDIRS += ../../../../nodes/streaming/streamingmanager/config/3gpp ../../../rtsp_parcom/src ../../../rtp/src ../../../../baselibs/gen_data_structures/src ../../../sdp/common/include ../../../../nodes/streaming/streamingmanager/include ../../../../baselibs/pvcrypto/src ../../../rdt_parser/include ../../../../nodes/streaming/common/include 14 15 16 17SRCDIR := ../../src 18INCSRCDIR := ../../inc 19 20SRCS := pvrtsp_client_engine_node.cpp\ 21 pvrtspenginenodeextensioninterface_impl.cpp \ 22 pvrtsp_client_engine_utils.cpp\ 23 pvrtsp_client_engine_factory.cpp\ 24 pvrtsp_client_engine_port.cpp 25 26HDRS := pvrtsp_client_engine_node.h\ 27 pvrtspenginenodeextensioninterface.h\ 28 pvrtsp_client_engine_utils.h\ 29 pvrtsp_client_engine_factory.h\ 30 pvrtsp_client_engine_error_code.h 31 32 33 34include $(MK)/library.mk 35