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 := pvjitterbuffernode
      8 
      9 XINCDIRS += ../../../common/include ../../../streamingmanager/plugins/mshttp/config ../../../streamingmanager/include ../../../../../protocols/rtp/src
     10 XINCDIRS += -I ../../../common/include
     11 XINCDIRS += -I ../../jitterbuffer/common/include
     12 
     13 SRCDIR := ../../src
     14 INCSRCDIR := ../../include
     15 
     16 # compose final src list for actual build
     17 SRCS = pvmf_jitter_buffer_extension_interface.cpp \
     18 	pvmf_jitter_buffer_port.cpp \
     19 	pvmf_jitter_buffer_node.cpp 
     20 
     21 HDRS = pvmf_jitter_buffer_ext_interface.h \
     22 	pvmf_jitter_buffer_internal.h \
     23 	pvmf_jitter_buffer_port.h \
     24 	pvmf_jitter_buffer_node.h 
     25 
     26 include $(MK)/library.mk
     27 
     28