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 := omx_mp3_component_lib 8 9 10XINCDIRS += \ 11 ../../../../../extern_libs_v2/khronos/openmax/include \ 12 ../../../../omx/omx_baseclass/include \ 13 ../../../../audio/mp3/dec/src \ 14 ../../../../audio/mp3/dec/include 15 16XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 17 18OPTIMIZE_FOR_PERFORMANCE_OVER_SIZE := true 19 20SRCDIR := ../../src 21INCSRCDIR := ../../include 22 23SRCS := mp3_dec.cpp \ 24 omx_mp3_component.cpp \ 25 mp3_timestamp.cpp 26 27 28HDRS := mp3_dec.h \ 29 omx_mp3_component.h \ 30 mp3_timestamp.h 31 32 33include $(MK)/library.mk 34 35