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 := rtprtcp
      8 
      9 
     10 XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     11 
     12 
     13 XINCDIRS += ../../include
     14 
     15 
     16 
     17 SRCDIR := ../../src
     18 INCSRCDIR := ../../src
     19 
     20 SRCS := rtcp.cpp \
     21 	rtcp_decoder.cpp \
     22 	rtcp_encoder.cpp
     23 
     24 HDRS := rtprtcp.h \
     25 	rtcp.h \
     26 	rtcp_decoder.h \
     27 	rtcp_encoder.h \
     28 	rtcp_constants.h
     29 
     30 include $(MK)/library.mk
     31 
     32