• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 := pvjitterbuffer
8
9XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
10
11# Added this to for osclconfig.h
12XINCDIRS += -I ../../../../../../common/include -I ../../../../../streamingmanager/plugins/mshttp/config -I ../../../../../streamingmanager/include -I ../../../../../../../protocols/rtp/src
13XINCDIRS += -I ../../../../../common/include
14
15SRCDIR := ../../src
16INCSRCDIR := ../../include
17
18# compose final src list for actual build
19SRCS = pvmf_jb_event_notifier.cpp \
20	 pvmf_jb_firewall_pkts_impl.cpp \
21	 pvmf_jb_jitterbuffermisc.cpp \
22	 pvmf_jb_session_duration_timer.cpp \
23	 pvmf_jitter_buffer_impl.cpp \
24	 pvmf_rtcp_proto_impl.cpp \
25	 pvmf_rtcp_timer.cpp
26
27HDRS = pvmf_jb_event_notifier.h \
28	pvmf_jb_jitterbuffermisc.h \
29	pvmf_jitter_buffer.h \
30	pvmf_jitter_buffer_common_types.h \
31	pvmf_jitter_buffer_factory.h
32
33include $(MK)/library.mk
34
35