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 := pvlatmpayloadparser 8 9 10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 11 12 13XINCDIRS += ../../../../../../codecs_v2/audio/aac/dec/include ../../../../../../codecs_v2/audio/aac/dec/src ../../../../../../baselibs/gen_data_structures/src ../../../../../sdp/common/include ../../../../../../pvmi/pvmf/include 14 15 16 17 18 19 20SRCDIR := ../../../src 21INCSRCDIR := ../../../include 22 23SRCS := latmpayloadparser.cpp 24 25HDRS := latmpayloadparser.h 26 27 28 29include $(MK)/library.mk 30