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 := pvomxbasedecnode 8 9XINCDIRS += ../../../../extern_libs_v2/khronos/openmax/include 10 11SRCDIR := ../../src 12INCSRCDIR := ../../include 13 14SRCS := pvmf_omx_basedec_node.cpp \ 15 pvmf_omx_basedec_port.cpp \ 16 pvmf_omx_basedec_callbacks.cpp 17 18HDRS := pvmf_omx_basedec_defs.h \ 19 pvmf_omx_basedec_port.h \ 20 pvmf_omx_basedec_node.h \ 21 pvmf_omx_basedec_callbacks.h \ 22 pvmf_omx_basedec_node_extension_interface.h 23 24include $(MK)/library.mk 25