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 := pvjitterbufferrtp
      8 
      9 XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     10 
     11 # Added this to for osclconfig.h
     12 XINCDIRS += -I ../../../../../../common/include -I ../../../../../streamingmanager/plugins/mshttp/config -I ../../../../../streamingmanager/include -I ../../../../../../../protocols/rtp/src
     13 XINCDIRS += -I ../../../../../common/include
     14 XINCDIRS += -I ../../../common/include
     15 
     16 SRCDIR := ../../src
     17 INCSRCDIR := ../../include
     18 
     19 # compose final src list for actual build
     20 SRCS = 	pvmf_rtp_jitter_buffer_factory.cpp\
     21 		pvmf_rtp_jitter_buffer_impl.cpp
     22 
     23 HDRS =  pvmf_rtp_jitter_buffer_factory.h
     24 
     25 include $(MK)/library.mk
     26 
     27