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_common_lib 8 9XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11OPTIMIZE_FOR_PERFORMANCE_OVER_SIZE := true 12 13XINCDIRS += \ 14 ../../../../../extern_libs_v2/khronos/openmax/include \ 15 ../../../../../pvmi/pvmf/include 16 17SRCDIR := ../../src 18INCSRCDIR := ../../include 19 20SRCS := \ 21 pv_omxcore.cpp \ 22 pv_omx_config_parser.cpp \ 23 pv_omxregistry.cpp 24 25 26HDRS := \ 27 pv_omxcore.h \ 28 pv_omx_config_parser.h \ 29 pv_omxdefs.h 30 31 32include $(MK)/library.mk 33 34