Home | History | Annotate | Download | only in make
      1 # Get the current local path as the first operation
      2 LOCAL_PATH := $(call get_makefile_dir)
      3 
      4 # Clear out the variables used in the local makefiles
      5 include $(MK)/clear.mk
      6 
      7 TARGET := pvomxvideodecnode
      8 
      9 XINCDIRS += ../../../../extern_libs_v2/khronos/openmax/include \
     10             ../../../../codecs_v2/video/wmv_vc1/dec/src \
     11             ../../../../baselibs/threadsafe_callback_ao/src \
     12             ../../../pvomxbasedecnode/include \
     13             ../../../pvomxbasedecnode/src
     14 
     15 SRCDIR := ../../src
     16 INCSRCDIR := ../../include
     17 
     18 SRCS := pvmf_omx_videodec_factory.cpp \
     19 	pvmf_omx_videodec_node.cpp
     20 
     21 HDRS := pvmf_omx_videodec_factory.h
     22 
     23 include $(MK)/library.mk
     24 
     25