blob: febbab226e1ede648b0c43ccd6bb59f36c9275ae (
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
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-include Python.h \
-include $(top_builddir)/enigma2_config.h
AM_CXXFLAGS = \
$(LIBSDL_CFLAGS)
noinst_LIBRARIES = libenigma_gdi.a
libenigma_gdi_a_SOURCES = \
accel.cpp \
bcm.cpp \
compositing.cpp \
epng.cpp \
erect.cpp \
fb.cpp \
font.cpp \
font_arabic.cpp \
gfbdc.cpp \
gfont.cpp \
glcddc.cpp \
gpixmap.cpp \
grc.cpp \
lcd.cpp \
picexif.cpp \
picload.cpp \
region.cpp
gdiincludedir = $(pkgincludedir)/lib/gdi
gdiinclude_HEADERS = \
accel.h \
compositing.h \
epng.h \
epoint.h \
erect.h \
esize.h \
fb.h \
font.h \
gfbdc.h \
gfont.h \
glcddc.h \
gpixmap.h \
grc.h \
lcd.h \
picexif.h \
picload.h \
region.h
if HAVE_LIBSDL
libenigma_gdi_a_SOURCES += \
sdl.cpp
gdiinclude_HEADERS += \
sdl.h
endif
|