Evas: Add a Wayland Shared Memory engine (similar to the buffer &
[framework/uifw/evas.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2
3 SUBDIRS = src doc
4
5 MAINTAINERCLEANFILES = \
6 Makefile.in \
7 aclocal.m4 \
8 config.guess \
9 config.h.in \
10 config.h.in~ \
11 config.sub \
12 configure \
13 depcomp \
14 install-sh \
15 ltmain.sh \
16 missing \
17 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
18 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
19 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
20 m4/libtool.m4 \
21 m4/lt~obsolete.m4 \
22 m4/ltoptions.m4 \
23 m4/ltsugar.m4 \
24 m4/ltversion.m4
25
26 bin_SCRIPTS =
27
28 EXTRA_DIST = \
29 AUTHORS \
30 COPYING \
31 autogen.sh \
32 evas.pc.in \
33 evas-directfb.pc.in \
34 evas-fb.pc.in \
35 evas-opengl-x11.pc.in \
36 evas-opengl-sdl.pc.in \
37 evas-software-buffer.pc.in \
38 evas-software-x11.pc.in \
39 evas-software-16-x11.pc.in \
40 evas-software-8-x11.pc.in \
41 evas-software-gdi.pc.in \
42 evas-software-ddraw.pc.in \
43 evas-software-16-ddraw.pc.in \
44 evas-direct3d.pc.in \
45 evas-software-16-wince.pc.in \
46 evas-software-sdl.pc.in \
47 evas-psl1ght.pc.in \
48 evas-wayland-shm.pc.in \
49 evas.spec.in \
50 evas.spec \
51 m4/efl_attribute.m4 \
52 m4/efl_coverage.m4 \
53 m4/efl_doxygen.m4 \
54 m4/efl_fnmatch.m4 \
55 m4/efl_path_max.m4 \
56 m4/efl_pthread.m4 \
57 m4/efl_tests.m4 \
58 m4/evas_check_engine.m4 \
59 m4/evas_check_loader.m4 \
60 m4/evas_converter.m4 \
61 m4/evas_dither.m4 \
62 m4/evas_scaler.m4
63
64 pkgconfigdir = $(libdir)/pkgconfig
65 pkgconfig_DATA = evas.pc
66
67 if BUILD_ENGINE_SOFTWARE_X11
68 pkgconfig_DATA += evas-software-x11.pc
69 endif
70
71 if BUILD_ENGINE_SOFTWARE_16_X11
72 pkgconfig_DATA += evas-software-16-x11.pc
73 endif
74
75 if BUILD_ENGINE_SOFTWARE_8_X11
76 pkgconfig_DATA += evas-software-8-x11.pc
77 endif
78
79 if BUILD_ENGINE_DIRECTFB
80 pkgconfig_DATA += evas-directfb.pc
81 endif
82
83 if BUILD_ENGINE_FB
84 pkgconfig_DATA += evas-fb.pc
85 endif
86
87 if BUILD_ENGINE_BUFFER
88 pkgconfig_DATA += evas-software-buffer.pc
89 endif
90
91 if BUILD_ENGINE_GL_X11
92 pkgconfig_DATA += evas-opengl-x11.pc
93 endif
94
95 if BUILD_ENGINE_GL_SDL
96 pkgconfig_DATA += evas-opengl-sdl.pc
97 endif
98
99 if BUILD_ENGINE_GL_COCOA
100 pkgconfig_DATA += evas-opengl-cocoa.pc
101 endif
102
103 if BUILD_ENGINE_SOFTWARE_GDI
104 pkgconfig_DATA += evas-software-gdi.pc
105 endif
106
107 if BUILD_ENGINE_SOFTWARE_DDRAW
108 pkgconfig_DATA += evas-software-ddraw.pc
109 endif
110
111 if BUILD_ENGINE_SOFTWARE_16_DDRAW
112 pkgconfig_DATA += evas-software-16-ddraw.pc
113 endif
114
115 if BUILD_ENGINE_DIRECT3D
116 pkgconfig_DATA += evas-direct3d.pc
117 endif
118
119 if BUILD_ENGINE_SOFTWARE_16_WINCE
120 pkgconfig_DATA += evas-software-16-wince.pc
121 endif
122
123 if BUILD_ENGINE_SOFTWARE_SDL
124 pkgconfig_DATA += evas-software-sdl.pc
125 endif
126
127 if BUILD_ENGINE_PSL1GHT
128 pkgconfig_DATA += evas-psl1ght.pc
129 endif
130
131 if BUILD_ENGINE_WAYLAND_SHM
132 pkgconfig_DATA += evas-wayland-shm.pc
133 endif
134
135 .PHONY: doc coverage
136
137 doc:
138         @echo "entering doc/"
139         $(MAKE) -C doc doc
140
141 # Unit tests
142
143 if EFL_ENABLE_TESTS
144
145 check-local:
146         @./src/tests/evas_suite
147
148 else
149
150 check-local:
151         @echo "reconfigure with --enable-tests"
152
153 endif
154
155 # Coverage report
156
157 if EFL_ENABLE_COVERAGE
158 lcov-reset:
159         @rm -rf coverage
160         @find . -name "*.gcda" -exec rm {} \;
161         @lcov --directory . --zerocounters
162
163 lcov-report:
164         @mkdir coverage
165         @lcov --compat-libtool --directory $(top_srcdir)/src --capture --output-file coverage/coverage.info
166         @lcov -l coverage/coverage.info |grep "\\.h"  |cut -d " " -f 2 > coverage/remove
167         @lcov -r coverage/coverage.info `cat coverage/remove` > coverage/coverage.cleaned.info
168         @rm coverage/remove
169         @mv coverage/coverage.cleaned.info coverage/coverage.info
170         @genhtml -t "$(PACKAGE_STRING)" -o coverage coverage/coverage.info
171
172 coverage:
173         @make lcov-reset
174         @make check
175         @make lcov-report
176 else
177 lcov-reset:
178         @echo "reconfigure with --enable-coverage"
179
180 lcov-report:
181         @echo "reconfigure with --enable-coverage"
182
183 coverage:
184         @echo "reconfigure with --enable-tests --enable-coverage"
185 endif
186
187 maintainer-clean-local:
188         rm -rf coverage