Merge pull request #2229 from ulion/file_double_cache
[vuplus_xbmc] / xbmc / cores / dvdplayer / DVDCodecs / Video / Makefile.in
1 INCLUDES+=-I@abs_top_srcdir@/xbmc/cores/dvdplayer
2
3 SRCS  = DVDVideoCodecFFmpeg.cpp
4 SRCS += DVDVideoCodecLibMpeg2.cpp
5 SRCS += DVDVideoPPFFmpeg.cpp
6
7 ifeq (@USE_VDPAU@,1)
8 SRCS += VDPAU.cpp
9 endif
10 ifeq (@USE_VAAPI@,1)
11 SRCS += VAAPI.cpp
12 endif
13 ifeq (@USE_CRYSTALHD@,1)
14 SRCS += CrystalHD.cpp
15 SRCS += DVDVideoCodecCrystalHD.cpp
16 endif
17 ifeq (@USE_VDA@,1)
18 SRCS += DVDVideoCodecVDA.cpp
19 endif
20 ifeq (@USE_OPENMAX@,1)
21 SRCS += OpenMax.cpp
22 SRCS += OpenMaxVideo.cpp
23 SRCS += DVDVideoCodecOpenMax.cpp
24 endif
25
26 ifeq (@USE_LIBAMCODEC@,1)
27 SRCS += AMLCodec.cpp
28 SRCS += DVDVideoCodecAmlogic.cpp
29 INCLUDES += -I$(prefix)/include/amlplayer
30 endif
31
32 LIB=Video.a
33
34 include @abs_top_srcdir@/Makefile.include
35 -include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS)))
36