• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_m4v_component_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        ../../../../omx/omx_baseclass/include \
16        ../../../../video/m4v_h263/dec/src \
17        ../../../../video/m4v_h263/dec/include
18
19SRCDIR := ../../src
20INCSRCDIR := ../../include
21
22SRCS :=	omx_mpeg4_component.cpp \
23	mpeg4_dec.cpp
24
25
26HDRS :=	omx_mpeg4_component.h \
27	mpeg4_dec.h \
28	mpeg4video_frame.h
29
30
31
32include $(MK)/library.mk
33
34