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 := pvgendatastruct 8 9XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11SRCDIR := ../../src 12INCSRCDIR := ../../src 13 14# compose final src list for actual build 15SRCS := buf_frag_group.cpp \ 16 pv_string.cpp \ 17 pv_string_uri.cpp \ 18 rtsp_range_utils.cpp \ 19 base64_codec.cpp \ 20 bitstreamparser.cpp \ 21 wchar_size_utils.cpp 22 23HDRS := buf_frag_group.h \ 24 hash_functions.h \ 25 hashtable.h \ 26 linked_list.h \ 27 pv_string.h \ 28 pv_string_uri.h \ 29 rtsp_range_utils.h \ 30 sorted_list.h \ 31 bool_array.h \ 32 rtsp_time_formats.h \ 33 mime_registry.h \ 34 base64_codec.h \ 35 bitstreamparser.h \ 36 wchar_size_utils.h 37 38include $(MK)/library.mk 39 40