1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := \ 5 src/rtsp_par_com_outgoing_message.cpp \ 6 src/rtsp_parser.cpp \ 7 src/rtsp_par_com_incoming_message.cpp \ 8 src/rtsp_par_com_message.cpp 9 10 11LOCAL_MODULE := libpv_rtsp_parcom 12 13LOCAL_CFLAGS := $(PV_CFLAGS) 14 15 16 17LOCAL_STATIC_LIBRARIES := 18 19LOCAL_SHARED_LIBRARIES := 20 21LOCAL_C_INCLUDES := \ 22 $(PV_TOP)/protocols/rtsp_parcom/src \ 23 $(PV_TOP)/protocols/rtsp_parcom/src \ 24 $(PV_TOP)/protocols/rtp/src \ 25 $(PV_INCLUDES) 26 27LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 28 29LOCAL_COPY_HEADERS := \ 30 src/rtsp_par_com_constants.h \ 31 src/rtsp_par_com_tunable.h \ 32 src/rtsp_par_com.h \ 33 src/rtsp_parser.h \ 34 src/rtsp_par_com_basic_ds.h \ 35 src/rtsp_session_types.h \ 36 src/rtsp_par_com_message.h \ 37 src/rtsp_transport.h 38 39include $(BUILD_STATIC_LIBRARY) 40