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 := pvavcdecoder 8 9XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11OPTIMIZE_FOR_PERFORMANCE_OVER_SIZE := true 12 13SRCDIR := ../../src 14INCSRCDIR := ../../include 15 16SRCS := avcdec_api.cpp \ 17 avc_bitstream.cpp \ 18 header.cpp \ 19 itrans.cpp \ 20 pred_inter.cpp \ 21 pred_intra.cpp \ 22 pvavcdecoder.cpp \ 23 pvavcdecoder_factory.cpp \ 24 residual.cpp \ 25 slice.cpp \ 26 vlc.cpp 27 28HDRS := pvavcdecoder.h \ 29 pvavcdecoder_factory.h \ 30 pvavcdecoderinterface.h 31 32include $(MK)/library.mk 33