blob: 24bc691feb17387871411546e483155d286161c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# player - Makefile.am
SUBDIRS = dither dither2YUV x11 sdl
INCLUDES = $(all_includes)
THIS_EXTRALIBS = dither/libdither.la \
dither2YUV/libdivxutil_dither.la \
x11/libutilx11.la
noinst_LTLIBRARIES = libutilrender.la
noinst_HEADERS = imageBase.h \
renderMachine.h surface.h
kmpgincludedir = $(includedir)/$(THIS_LIB_NAME)/util/render
kmpginclude_HEADERS = yuvPicture.h pictureArray.h
libutilrender_la_SOURCES = yuvPicture.cpp imageBase.cpp \
renderMachine.cpp surface.cpp \
pictureArray.cpp
libutilrender_la_LIBADD = $(THIS_EXTRALIBS)
|