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 := pvomxencnode 8 9 10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 11 12 13XINCDIRS += \ 14 ../../../../extern_libs_v2/khronos/openmax/include 15 16 17 18SRCDIR := ../../src 19INCSRCDIR := ../../include 20 21SRCS := pvmf_omx_enc_factory.cpp \ 22 pvmf_omx_enc_node.cpp \ 23 pvmf_omx_enc_port.cpp \ 24 pvmf_omx_enc_callbacks.cpp 25 26HDRS := pvmf_omx_enc_defs.h \ 27 pvmf_omx_enc_factory.h \ 28 pvmf_omx_enc_port.h 29 30include $(MK)/library.mk 31 32