blob: d43ad7580bdae26a885cfd1c2a68bf781dffabe5 (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
## Process this file with automake to produce Makefile.in
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = ecore
if BUILD_ECORE_INPUT
SUBDIRS += ecore_input
endif
if BUILD_ECORE_INPUT_EVAS
SUBDIRS += ecore_input_evas
endif
if BUILD_ECORE_FB
SUBDIRS += ecore_fb
endif
if BUILD_ECORE_DIRECTFB
SUBDIRS += ecore_directfb
endif
if BUILD_ECORE_CON
SUBDIRS += ecore_con
endif
if BUILD_ECORE_X
SUBDIRS += ecore_x
endif
if BUILD_ECORE_WIN32
SUBDIRS += ecore_win32
endif
if BUILD_ECORE_WINCE
SUBDIRS += ecore_wince
endif
if BUILD_ECORE_SDL
SUBDIRS += ecore_sdl
endif
if BUILD_ECORE_PSL1GHT
SUBDIRS += ecore_psl1ght
endif
if BUILD_ECORE_COCOA
SUBDIRS += ecore_cocoa
endif
if BUILD_ECORE_WAYLAND
SUBDIRS += ecore_wayland
endif
if BUILD_ECORE_IPC
SUBDIRS += ecore_ipc
endif
if BUILD_ECORE_EVAS
SUBDIRS += ecore_evas
endif
if BUILD_ECORE_CONFIG
SUBDIRS += ecore_config
endif
if BUILD_ECORE_FILE
SUBDIRS += ecore_file
endif
if BUILD_ECORE_IMF
SUBDIRS += ecore_imf
endif
if BUILD_ECORE_IMF_EVAS
SUBDIRS += ecore_imf_evas
endif
|