ivi-shell: a reference of weston.ini for ivi-shell and ivi-hmi-controller.
[platform/upstream/weston.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2
3 bin_PROGRAMS =
4 noinst_PROGRAMS =
5 libexec_PROGRAMS =
6 moduledir = $(libdir)/weston
7 module_LTLIBRARIES =
8 noinst_LTLIBRARIES =
9 BUILT_SOURCES =
10
11 # Do not run xwayland test while it is known broken.
12 AM_DISTCHECK_CONFIGURE_FLAGS = --disable-setuid-install --disable-xwayland-test
13
14 EXTRA_DIST = weston.ini.in ivi-shell/weston.ini.in
15
16 weston.ini : $(srcdir)/weston.ini.in
17         $(AM_V_GEN)$(SED) \
18                 -e 's|@bindir[@]|$(bindir)|g' \
19                 -e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' \
20                 -e 's|@libexecdir[@]|$(libexecdir)|g' \
21                 $< > $@
22
23 ivi-shell/weston.ini : $(srcdir)/ivi-shell/weston.ini.in
24         $(AM_V_GEN)$(SED) \
25                 -e 's|@bindir[@]|$(bindir)|g' \
26                 -e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' \
27                 -e 's|@libexecdir[@]|$(libexecdir)|g' \
28                 $< > $@
29
30 all-local : weston.ini ivi-shell/weston.ini
31
32 AM_CFLAGS = $(GCC_CFLAGS)
33
34 AM_CPPFLAGS =                                   \
35         -I$(top_srcdir)/src                     \
36         -I$(top_builddir)/src                   \
37         -I$(top_builddir)/clients               \
38         -I$(top_builddir)/tests                 \
39         -I$(top_srcdir)/shared                  \
40         -I$(top_builddir)/protocol              \
41         -DDATADIR='"$(datadir)"'                \
42         -DMODULEDIR='"$(moduledir)"'            \
43         -DLIBEXECDIR='"$(libexecdir)"'          \
44         -DBINDIR='"$(bindir)"'
45
46 CLEANFILES = weston.ini ivi-shell/weston.ini $(BUILT_SOURCES)
47
48 bin_PROGRAMS += weston
49
50 weston_LDFLAGS = -export-dynamic
51 weston_CPPFLAGS = $(AM_CPPFLAGS) -DIN_WESTON
52 weston_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) $(LIBUNWIND_CFLAGS)
53 weston_LDADD = $(COMPOSITOR_LIBS) $(LIBUNWIND_LIBS) \
54         $(DLOPEN_LIBS) -lm libshared.la
55
56 weston_SOURCES =                                        \
57         src/git-version.h                               \
58         src/log.c                                       \
59         src/compositor.c                                \
60         src/compositor.h                                \
61         src/input.c                                     \
62         src/data-device.c                               \
63         src/screenshooter.c                             \
64         src/clipboard.c                                 \
65         src/zoom.c                                      \
66         src/text-backend.c                              \
67         src/bindings.c                                  \
68         src/animation.c                                 \
69         src/noop-renderer.c                             \
70         src/pixman-renderer.c                           \
71         src/pixman-renderer.h                           \
72         shared/matrix.c                                 \
73         shared/matrix.h                                 \
74         shared/zalloc.h                                 \
75         src/weston-egl-ext.h
76
77 nodist_weston_SOURCES =                                 \
78         protocol/screenshooter-protocol.c               \
79         protocol/screenshooter-server-protocol.h        \
80         protocol/text-cursor-position-protocol.c        \
81         protocol/text-cursor-position-server-protocol.h \
82         protocol/text-protocol.c                        \
83         protocol/text-server-protocol.h                 \
84         protocol/input-method-protocol.c                \
85         protocol/input-method-server-protocol.h         \
86         protocol/workspaces-protocol.c                  \
87         protocol/workspaces-server-protocol.h           \
88         protocol/presentation_timing-protocol.c         \
89         protocol/presentation_timing-server-protocol.h  \
90         protocol/scaler-protocol.c                      \
91         protocol/scaler-server-protocol.h
92
93 BUILT_SOURCES += $(nodist_weston_SOURCES)
94
95 # Track this dependency explicitly instead of using BUILT_SOURCES.  We
96 # add BUILT_SOURCES to CLEANFILES, but we want to keep git-version.h
97 # in case we're building from tarballs.
98
99 src/compositor.c : $(top_builddir)/src/git-version.h
100
101 noinst_LTLIBRARIES +=                           \
102         libsession-helper.la
103
104 libsession_helper_la_SOURCES =                  \
105         src/weston-launch.h                     \
106         src/launcher-util.c                     \
107         src/launcher-util.h
108 libsession_helper_la_CFLAGS = $(GCC_CFLAGS) $(LIBDRM_CFLAGS) $(PIXMAN_CFLAGS) $(COMPOSITOR_CFLAGS)
109 libsession_helper_la_LIBADD = $(LIBDRM_LIBS)
110
111 if ENABLE_DBUS
112 if HAVE_SYSTEMD_LOGIN
113 libsession_helper_la_SOURCES +=                 \
114         src/dbus.h                              \
115         src/dbus.c                              \
116         src/logind-util.h                       \
117         src/logind-util.c
118 libsession_helper_la_CFLAGS += $(SYSTEMD_LOGIN_CFLAGS) $(DBUS_CFLAGS)
119 libsession_helper_la_LIBADD += $(SYSTEMD_LOGIN_LIBS) $(DBUS_LIBS)
120 endif
121 endif
122
123 if HAVE_GIT_REPO
124 src/git-version.h : $(top_srcdir)/.git/logs/HEAD
125         $(AM_V_GEN)echo "#define BUILD_ID \"$(shell git --git-dir=$(top_srcdir)/.git describe --always --dirty) $(shell git --git-dir=$(top_srcdir)/.git log -1 --format='%s (%ci)')\"" > $@
126 else
127 src/git-version.h :
128         $(AM_V_GEN)echo "#define BUILD_ID \"unknown (not built from git or tarball)\"" > $@
129
130 endif
131
132 .FORCE :
133
134 if BUILD_WESTON_LAUNCH
135 bin_PROGRAMS += weston-launch
136 weston_launch_SOURCES = src/weston-launch.c src/weston-launch.h
137 weston_launch_CPPFLAGS = -DBINDIR='"$(bindir)"'
138 weston_launch_CFLAGS=                           \
139         $(GCC_CFLAGS)                           \
140         $(PAM_CFLAGS)                           \
141         $(SYSTEMD_LOGIN_CFLAGS)                 \
142         $(LIBDRM_CFLAGS)
143 weston_launch_LDADD = $(PAM_LIBS) $(SYSTEMD_LOGIN_LIBS) $(LIBDRM_LIBS)
144
145 if ENABLE_SETUID_INSTALL
146 install-exec-hook:
147         chown root $(DESTDIR)$(bindir)/weston-launch
148         chmod u+s $(DESTDIR)$(bindir)/weston-launch
149 endif
150
151 endif # BUILD_WESTON_LAUNCH
152
153 pkgconfigdir = $(libdir)/pkgconfig
154 pkgconfig_DATA = src/weston.pc
155
156 westonincludedir = $(includedir)/weston
157 westoninclude_HEADERS =                         \
158         src/version.h                           \
159         src/compositor.h                        \
160         shared/matrix.h                         \
161         shared/config-parser.h                  \
162         shared/zalloc.h
163
164 if ENABLE_EGL
165 module_LTLIBRARIES += gl-renderer.la
166 gl_renderer_la_LDFLAGS = -module -avoid-version
167 gl_renderer_la_LIBADD = $(COMPOSITOR_LIBS) $(EGL_LIBS)
168 gl_renderer_la_CFLAGS =                         \
169         $(COMPOSITOR_CFLAGS)                    \
170         $(EGL_CFLAGS)                           \
171         $(GCC_CFLAGS)
172 gl_renderer_la_SOURCES =                        \
173         src/gl-renderer.h                       \
174         src/gl-renderer.c                       \
175         src/vertex-clipping.c                   \
176         src/vertex-clipping.h
177 endif
178
179 if ENABLE_X11_COMPOSITOR
180 module_LTLIBRARIES += x11-backend.la
181 x11_backend_la_LDFLAGS = -module -avoid-version
182 x11_backend_la_LIBADD = $(COMPOSITOR_LIBS) $(X11_COMPOSITOR_LIBS) \
183         libshared-cairo.la
184 x11_backend_la_CFLAGS =                         \
185         $(COMPOSITOR_CFLAGS)                    \
186         $(EGL_CFLAGS)                           \
187         $(PIXMAN_CFLAGS)                        \
188         $(CAIRO_CFLAGS)                         \
189         $(X11_COMPOSITOR_CFLAGS)                \
190         $(GCC_CFLAGS)
191 x11_backend_la_SOURCES = src/compositor-x11.c
192 endif
193
194 INPUT_BACKEND_LIBS = $(LIBINPUT_BACKEND_LIBS)
195 INPUT_BACKEND_SOURCES =                         \
196         src/libinput-seat.c                     \
197         src/libinput-seat.h                     \
198         src/libinput-device.c                   \
199         src/libinput-device.h
200
201 if ENABLE_DRM_COMPOSITOR
202 module_LTLIBRARIES += drm-backend.la
203 drm_backend_la_LDFLAGS = -module -avoid-version
204 drm_backend_la_LIBADD =                         \
205         $(COMPOSITOR_LIBS)                      \
206         $(DRM_COMPOSITOR_LIBS)                  \
207         $(INPUT_BACKEND_LIBS)                   \
208         libshared.la -lrt                       \
209         libsession-helper.la
210 drm_backend_la_CFLAGS =                         \
211         $(COMPOSITOR_CFLAGS)                    \
212         $(EGL_CFLAGS)                           \
213         $(DRM_COMPOSITOR_CFLAGS)                \
214         $(GCC_CFLAGS)
215 drm_backend_la_SOURCES =                        \
216         src/compositor-drm.c                    \
217         $(INPUT_BACKEND_SOURCES)                \
218         src/libbacklight.c                      \
219         src/libbacklight.h
220
221 if ENABLE_VAAPI_RECORDER
222 drm_backend_la_SOURCES += src/vaapi-recorder.c src/vaapi-recorder.h
223 drm_backend_la_LIBADD += $(LIBVA_LIBS)
224 drm_backend_la_CFLAGS += $(LIBVA_CFLAGS)
225 endif
226 endif
227
228 if ENABLE_WAYLAND_COMPOSITOR
229 module_LTLIBRARIES += wayland-backend.la
230 wayland_backend_la_LDFLAGS = -module -avoid-version
231 wayland_backend_la_LIBADD =                     \
232         $(COMPOSITOR_LIBS)                      \
233         $(WAYLAND_COMPOSITOR_LIBS)              \
234         libshared-cairo.la
235 wayland_backend_la_CFLAGS =                     \
236         $(COMPOSITOR_CFLAGS)                    \
237         $(EGL_CFLAGS)                           \
238         $(PIXMAN_CFLAGS)                        \
239         $(CAIRO_CFLAGS)                         \
240         $(WAYLAND_COMPOSITOR_CFLAGS)            \
241         $(GCC_CFLAGS)
242 wayland_backend_la_SOURCES = src/compositor-wayland.c
243 nodist_wayland_backend_la_SOURCES =                     \
244         protocol/fullscreen-shell-protocol.c            \
245         protocol/fullscreen-shell-client-protocol.h
246 endif
247
248 if ENABLE_RPI_COMPOSITOR
249 if INSTALL_RPI_COMPOSITOR
250 module_LTLIBRARIES += rpi-backend.la
251 else
252 noinst_LTLIBRARIES += rpi-backend.la
253 endif
254
255 rpi_backend_la_LDFLAGS = -module -avoid-version
256 rpi_backend_la_LIBADD = $(COMPOSITOR_LIBS)      \
257         $(RPI_COMPOSITOR_LIBS)                  \
258         $(RPI_BCM_HOST_LIBS)                    \
259         $(INPUT_BACKEND_LIBS)                   \
260         libsession-helper.la                    \
261         libshared.la
262 rpi_backend_la_CFLAGS =                         \
263         $(GCC_CFLAGS)                           \
264         $(COMPOSITOR_CFLAGS)                    \
265         $(RPI_COMPOSITOR_CFLAGS)                \
266         $(RPI_BCM_HOST_CFLAGS)
267 rpi_backend_la_SOURCES =                        \
268         src/compositor-rpi.c                    \
269         src/rpi-renderer.c                      \
270         src/rpi-renderer.h                      \
271         src/rpi-bcm-stubs.h                     \
272         $(INPUT_BACKEND_SOURCES)
273
274 if ENABLE_EGL
275 rpi_backend_la_LIBADD += $(EGL_LIBS)
276 rpi_backend_la_CFLAGS += $(EGL_CFLAGS)
277 endif
278
279 endif
280
281 if ENABLE_HEADLESS_COMPOSITOR
282 module_LTLIBRARIES += headless-backend.la
283 headless_backend_la_LDFLAGS = -module -avoid-version
284 headless_backend_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
285 headless_backend_la_CFLAGS = $(COMPOSITOR_CFLAGS) $(GCC_CFLAGS)
286 headless_backend_la_SOURCES = src/compositor-headless.c
287 endif
288
289 if ENABLE_FBDEV_COMPOSITOR
290 module_LTLIBRARIES += fbdev-backend.la
291 fbdev_backend_la_LDFLAGS = -module -avoid-version
292 fbdev_backend_la_LIBADD =                       \
293         $(COMPOSITOR_LIBS)                      \
294         $(FBDEV_COMPOSITOR_LIBS)                \
295         $(INPUT_BACKEND_LIBS)                   \
296         libsession-helper.la                    \
297         libshared.la
298 fbdev_backend_la_CFLAGS =                       \
299         $(COMPOSITOR_CFLAGS)                    \
300         $(EGL_CFLAGS)                           \
301         $(FBDEV_COMPOSITOR_CFLAGS)              \
302         $(PIXMAN_CFLAGS)                        \
303         $(GCC_CFLAGS)
304 fbdev_backend_la_SOURCES =                      \
305         src/compositor-fbdev.c                  \
306         $(INPUT_BACKEND_SOURCES)
307 endif
308
309 if ENABLE_RDP_COMPOSITOR
310 module_LTLIBRARIES += rdp-backend.la
311 rdp_backend_la_LDFLAGS = -module -avoid-version
312 rdp_backend_la_LIBADD = $(COMPOSITOR_LIBS) \
313         $(RDP_COMPOSITOR_LIBS) \
314         libshared.la
315 rdp_backend_la_CFLAGS =                         \
316         $(COMPOSITOR_CFLAGS)                    \
317         $(RDP_COMPOSITOR_CFLAGS)                \
318         $(GCC_CFLAGS)
319 rdp_backend_la_SOURCES = src/compositor-rdp.c
320 endif
321
322 if HAVE_LCMS
323 module_LTLIBRARIES += cms-static.la
324 cms_static_la_LDFLAGS = -module -avoid-version
325 cms_static_la_LIBADD = $(COMPOSITOR_LIBS) $(LCMS_LIBS) libshared.la
326 cms_static_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) $(LCMS_CFLAGS)
327 cms_static_la_SOURCES =                         \
328         src/cms-static.c                                \
329         src/cms-helper.c                                \
330         src/cms-helper.h
331 if ENABLE_COLORD
332 module_LTLIBRARIES += cms-colord.la
333 cms_colord_la_LDFLAGS = -module -avoid-version
334 cms_colord_la_LIBADD = $(COMPOSITOR_LIBS) $(COLORD_LIBS)
335 cms_colord_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) $(COLORD_CFLAGS)
336 cms_colord_la_SOURCES =                         \
337         src/cms-colord.c                        \
338         src/cms-helper.c                        \
339         src/cms-helper.h
340 endif
341 endif
342
343 noinst_PROGRAMS += spring-tool
344 spring_tool_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
345 spring_tool_LDADD = $(COMPOSITOR_LIBS) -lm
346 spring_tool_SOURCES =                           \
347         src/spring-tool.c                       \
348         src/animation.c                         \
349         shared/matrix.c                         \
350         shared/matrix.h                         \
351         src/compositor.h
352
353 if BUILD_CLIENTS
354
355 bin_PROGRAMS += weston-terminal weston-info
356
357 libexec_PROGRAMS +=                             \
358         weston-desktop-shell                    \
359         weston-screenshooter                    \
360         weston-keyboard                         \
361         weston-simple-im
362
363 if ENABLE_IVI_SHELL
364 libexec_PROGRAMS +=                             \
365         weston-ivi-shell-user-interface
366 endif
367
368 demo_clients =                                  \
369         weston-flower                           \
370         weston-image                            \
371         weston-cliptest                         \
372         weston-dnd                              \
373         weston-smoke                            \
374         weston-resizor                          \
375         weston-eventdemo                        \
376         weston-clickdot                         \
377         weston-transformed                      \
378         weston-fullscreen                       \
379         weston-stacking                         \
380         weston-calibrator                       \
381         weston-scaler
382
383 if INSTALL_DEMO_CLIENTS
384 bin_PROGRAMS += $(demo_clients)
385 else
386 noinst_PROGRAMS += $(demo_clients)
387 endif
388
389
390 if BUILD_SIMPLE_CLIENTS
391 demo_clients +=                                 \
392         weston-simple-shm                       \
393         weston-simple-damage                    \
394         weston-simple-touch                     \
395         weston-presentation-shm                 \
396         weston-multi-resource
397
398 weston_simple_shm_SOURCES = clients/simple-shm.c
399 nodist_weston_simple_shm_SOURCES =              \
400         protocol/xdg-shell-protocol.c           \
401         protocol/xdg-shell-client-protocol.h    \
402         protocol/fullscreen-shell-protocol.c    \
403         protocol/fullscreen-shell-client-protocol.h
404 weston_simple_shm_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
405 weston_simple_shm_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la
406
407 weston_simple_damage_SOURCES = clients/simple-damage.c
408 nodist_weston_simple_damage_SOURCES =           \
409         protocol/scaler-protocol.c              \
410         protocol/scaler-client-protocol.h       \
411         protocol/xdg-shell-protocol.c           \
412         protocol/xdg-shell-client-protocol.h    \
413         protocol/fullscreen-shell-protocol.c    \
414         protocol/fullscreen-shell-client-protocol.h
415 weston_simple_damage_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
416 weston_simple_damage_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la
417
418 weston_simple_touch_SOURCES = clients/simple-touch.c
419 weston_simple_touch_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
420 weston_simple_touch_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la
421
422 weston_presentation_shm_SOURCES = clients/presentation-shm.c
423 nodist_weston_presentation_shm_SOURCES =                \
424         protocol/presentation_timing-protocol.c         \
425         protocol/presentation_timing-client-protocol.h
426 weston_presentation_shm_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
427 weston_presentation_shm_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la -lm
428
429 weston_multi_resource_SOURCES = clients/multi-resource.c
430 weston_multi_resource_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
431 weston_multi_resource_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la -lrt -lm
432 endif
433
434 if BUILD_SIMPLE_EGL_CLIENTS
435 demo_clients += weston-simple-egl
436 weston_simple_egl_SOURCES = clients/simple-egl.c
437 nodist_weston_simple_egl_SOURCES =              \
438         protocol/xdg-shell-protocol.c           \
439         protocol/xdg-shell-client-protocol.h
440 weston_simple_egl_CFLAGS = $(AM_CFLAGS) $(SIMPLE_EGL_CLIENT_CFLAGS)
441 weston_simple_egl_LDADD = $(SIMPLE_EGL_CLIENT_LIBS) -lm
442 endif
443
444 noinst_LTLIBRARIES += libtoytoolkit.la
445
446 libtoytoolkit_la_SOURCES =                              \
447         clients/window.c                                \
448         clients/window.h
449
450 nodist_libtoytoolkit_la_SOURCES =                       \
451         protocol/text-cursor-position-protocol.c        \
452         protocol/text-cursor-position-client-protocol.h \
453         protocol/scaler-protocol.c                      \
454         protocol/scaler-client-protocol.h               \
455         protocol/workspaces-protocol.c                  \
456         protocol/workspaces-client-protocol.h           \
457         protocol/presentation_timing-protocol.c         \
458         protocol/presentation_timing-client-protocol.h  \
459         protocol/xdg-shell-protocol.c                   \
460         protocol/xdg-shell-client-protocol.h            \
461         protocol/ivi-application-protocol.c             \
462         protocol/ivi-application-client-protocol.h
463
464 BUILT_SOURCES += $(nodist_libtoytoolkit_la_SOURCES)
465
466
467 libtoytoolkit_la_LIBADD =                       \
468         $(CLIENT_LIBS)                          \
469         $(CAIRO_EGL_LIBS)                       \
470         libshared-cairo.la -lrt -lm
471 libtoytoolkit_la_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS) $(CAIRO_EGL_CFLAGS)
472
473 weston_flower_SOURCES = clients/flower.c
474 weston_flower_LDADD = libtoytoolkit.la
475 weston_flower_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
476
477 weston_screenshooter_SOURCES =                          \
478         clients/screenshot.c
479 nodist_weston_screenshooter_SOURCES =                   \
480         protocol/screenshooter-protocol.c               \
481         protocol/screenshooter-client-protocol.h
482 weston_screenshooter_LDADD = $(CLIENT_LIBS) libshared.la
483 weston_screenshooter_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
484
485 weston_terminal_SOURCES = clients/terminal.c
486 weston_terminal_LDADD = libtoytoolkit.la -lutil
487 weston_terminal_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
488
489 weston_image_SOURCES = clients/image.c
490 weston_image_LDADD = libtoytoolkit.la
491 weston_image_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
492
493 weston_cliptest_SOURCES =                               \
494         clients/cliptest.c                              \
495         src/vertex-clipping.c                           \
496         src/vertex-clipping.h
497 weston_cliptest_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
498 weston_cliptest_LDADD = libtoytoolkit.la
499
500 weston_dnd_SOURCES = clients/dnd.c
501 weston_dnd_LDADD = libtoytoolkit.la
502 weston_dnd_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
503
504 weston_smoke_SOURCES = clients/smoke.c
505 weston_smoke_LDADD = libtoytoolkit.la
506 weston_smoke_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
507
508 weston_resizor_SOURCES = clients/resizor.c
509 weston_resizor_LDADD = libtoytoolkit.la
510 weston_resizor_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
511
512 weston_scaler_SOURCES = clients/scaler.c
513 weston_scaler_LDADD = libtoytoolkit.la
514 weston_scaler_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
515
516 if HAVE_CAIRO_GLESV2
517 demo_clients += weston-nested weston-nested-client
518
519 weston_nested_SOURCES = clients/nested.c
520 weston_nested_LDADD = libtoytoolkit.la $(SERVER_LIBS)
521 weston_nested_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
522
523 weston_nested_client_SOURCES = clients/nested-client.c
524 weston_nested_client_LDADD = $(SIMPLE_EGL_CLIENT_LIBS) -lm
525 weston_nested_client_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
526 endif
527
528 weston_eventdemo_SOURCES = clients/eventdemo.c
529 weston_eventdemo_LDADD = libtoytoolkit.la
530 weston_eventdemo_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
531
532 weston_clickdot_SOURCES = clients/clickdot.c
533 weston_clickdot_LDADD = libtoytoolkit.la
534 weston_clickdot_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
535
536 weston_transformed_SOURCES = clients/transformed.c
537 weston_transformed_LDADD = libtoytoolkit.la
538 weston_transformed_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
539
540 weston_fullscreen_SOURCES = clients/fullscreen.c
541 nodist_weston_fullscreen_SOURCES =                      \
542         protocol/fullscreen-shell-protocol.c            \
543         protocol/fullscreen-shell-client-protocol.h
544 weston_fullscreen_LDADD = libtoytoolkit.la
545 weston_fullscreen_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
546
547 weston_stacking_SOURCES = clients/stacking.c
548 weston_stacking_LDADD = libtoytoolkit.la
549 weston_stacking_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
550
551 weston_calibrator_SOURCES = clients/calibrator.c        \
552         shared/matrix.c                                 \
553         shared/matrix.h
554 weston_calibrator_LDADD = libtoytoolkit.la
555 weston_calibrator_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
556
557 if BUILD_SUBSURFACES_CLIENT
558 demo_clients += weston-subsurfaces
559 weston_subsurfaces_SOURCES = clients/subsurfaces.c
560 weston_subsurfaces_CFLAGS =                     \
561         $(AM_CFLAGS)                            \
562         $(SIMPLE_EGL_CLIENT_CFLAGS)             \
563         $(CLIENT_CFLAGS)
564 weston_subsurfaces_LDADD = libtoytoolkit.la $(SIMPLE_EGL_CLIENT_LIBS) -lm
565 endif
566
567 if HAVE_PANGO
568 demo_clients += weston-editor
569 weston_editor_SOURCES = clients/editor.c
570 nodist_weston_editor_SOURCES =                  \
571         protocol/text-protocol.c                \
572         protocol/text-client-protocol.h
573 weston_editor_LDADD = libtoytoolkit.la $(PANGO_LIBS)
574 weston_editor_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS) $(PANGO_CFLAGS)
575 endif
576
577 weston_keyboard_SOURCES = clients/keyboard.c
578 nodist_weston_keyboard_SOURCES =                        \
579         protocol/desktop-shell-client-protocol.h        \
580         protocol/desktop-shell-protocol.c               \
581         protocol/input-method-protocol.c                \
582         protocol/input-method-client-protocol.h
583 weston_keyboard_LDADD = libtoytoolkit.la
584 weston_keyboard_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
585
586 weston_simple_im_SOURCES = clients/weston-simple-im.c
587 nodist_weston_simple_im_SOURCES =               \
588         protocol/input-method-protocol.c        \
589         protocol/input-method-client-protocol.h
590 weston_simple_im_LDADD = $(CLIENT_LIBS)
591 weston_simple_im_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
592
593 weston_info_SOURCES = clients/weston-info.c
594 nodist_weston_info_SOURCES =                            \
595         protocol/presentation_timing-protocol.c         \
596         protocol/presentation_timing-client-protocol.h
597 weston_info_LDADD = $(WESTON_INFO_LIBS) libshared.la
598 weston_info_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
599
600 weston_desktop_shell_SOURCES = clients/desktop-shell.c
601 nodist_weston_desktop_shell_SOURCES =                   \
602         protocol/desktop-shell-client-protocol.h        \
603         protocol/desktop-shell-protocol.c
604 weston_desktop_shell_LDADD = libtoytoolkit.la
605 weston_desktop_shell_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
606
607 if ENABLE_IVI_SHELL
608 weston_ivi_shell_user_interface_SOURCES = clients/ivi-shell-user-interface.c
609 nodist_weston_ivi_shell_user_interface_SOURCES =                        \
610         protocol/ivi-hmi-controller-client-protocol.h                   \
611         protocol/ivi-hmi-controller-protocol.c                          \
612         protocol/ivi-application-client-protocol.h                      \
613         protocol/ivi-application-protocol.c
614 weston_ivi_shell_user_interface_LDADD = libtoytoolkit.la
615 weston_ivi_shell_user_interface_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
616 endif
617
618 if BUILD_FULL_GL_CLIENTS
619 demo_clients += weston-gears
620 weston_gears_SOURCES = clients/gears.c
621 weston_gears_LDADD = libtoytoolkit.la
622 weston_gears_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
623
624 if HAVE_GLU
625 libexec_PROGRAMS += weston-screensaver
626 weston_screensaver_SOURCES =                            \
627         clients/wscreensaver.c                          \
628         clients/wscreensaver.h                          \
629         clients/wscreensaver-glue.c                     \
630         clients/wscreensaver-glue.h                     \
631         clients/glmatrix.c                              \
632         clients/matrix3.xpm
633 nodist_weston_screensaver_SOURCES =                     \
634         protocol/desktop-shell-client-protocol.h        \
635         protocol/desktop-shell-protocol.c
636
637 weston_screensaver_LDADD = libtoytoolkit.la $(GLU_LIBS)
638 weston_screensaver_CFLAGS = $(AM_CFLAGS) $(GLU_CFLAGS) $(CLIENT_CFLAGS)
639
640 endif
641
642 endif
643
644 endif
645
646 BUILT_SOURCES +=                                        \
647         protocol/screenshooter-protocol.c               \
648         protocol/screenshooter-client-protocol.h        \
649         protocol/text-cursor-position-client-protocol.h \
650         protocol/text-cursor-position-protocol.c        \
651         protocol/text-protocol.c                        \
652         protocol/text-client-protocol.h                 \
653         protocol/input-method-protocol.c                \
654         protocol/input-method-client-protocol.h         \
655         protocol/desktop-shell-client-protocol.h        \
656         protocol/desktop-shell-protocol.c               \
657         protocol/scaler-client-protocol.h               \
658         protocol/scaler-protocol.c                      \
659         protocol/workspaces-client-protocol.h           \
660         protocol/workspaces-protocol.c                  \
661         protocol/fullscreen-shell-protocol.c            \
662         protocol/fullscreen-shell-client-protocol.h     \
663         protocol/xdg-shell-protocol.c                   \
664         protocol/xdg-shell-client-protocol.h            \
665         protocol/ivi-hmi-controller-protocol.c          \
666         protocol/ivi-hmi-controller-client-protocol.h   \
667         protocol/ivi-application-protocol.c             \
668         protocol/ivi-application-client-protocol.h
669
670 westondatadir = $(datadir)/weston
671 dist_westondata_DATA =                          \
672         data/wayland.svg                        \
673         data/wayland.png                        \
674         data/pattern.png                        \
675         data/terminal.png                       \
676         data/border.png                         \
677         data/icon_window.png                    \
678         data/sign_close.png                     \
679         data/sign_maximize.png                  \
680         data/sign_minimize.png                  \
681         data/background.png                     \
682         data/tiling.png                         \
683         data/fullscreen.png                     \
684         data/panel.png                          \
685         data/random.png                         \
686         data/sidebyside.png                     \
687         data/home.png                           \
688         data/icon_ivi_clickdot.png              \
689         data/icon_ivi_flower.png                \
690         data/icon_ivi_simple-egl.png            \
691         data/icon_ivi_simple-shm.png            \
692         data/icon_ivi_smoke.png
693
694
695 if BUILD_WCAP_TOOLS
696 bin_PROGRAMS += wcap-decode
697
698 wcap_decode_SOURCES =                           \
699         wcap/main.c                             \
700         wcap/wcap-decode.c                      \
701         wcap/wcap-decode.h
702
703 wcap_decode_CFLAGS = $(GCC_CFLAGS) $(WCAP_CFLAGS)
704 wcap_decode_LDADD = $(WCAP_LIBS)
705 endif
706
707
708 if ENABLE_DESKTOP_SHELL
709
710 module_LTLIBRARIES += desktop-shell.la
711
712 desktop_shell_la_CPPFLAGS =                     \
713         -I$(top_builddir)/protocol              \
714         -I$(top_srcdir)/shared                  \
715         -I$(top_srcdir)/src                     \
716         -I$(top_builddir)/src                   \
717         -I$(top_builddir)/desktop-shell         \
718         -DDATADIR='"$(datadir)"'                \
719         -DMODULEDIR='"$(moduledir)"'            \
720         -DLIBEXECDIR='"$(libexecdir)"'          \
721         -DIN_WESTON
722
723 desktop_shell_la_LDFLAGS = -module -avoid-version
724 desktop_shell_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
725 desktop_shell_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
726 desktop_shell_la_SOURCES =                              \
727         desktop-shell/shell.h                           \
728         desktop-shell/shell.c                           \
729         desktop-shell/exposay.c                         \
730         desktop-shell/input-panel.c
731 nodist_desktop_shell_la_SOURCES =                       \
732         protocol/desktop-shell-protocol.c               \
733         protocol/desktop-shell-server-protocol.h        \
734         protocol/xdg-shell-protocol.c                   \
735         protocol/xdg-shell-server-protocol.h
736
737 BUILT_SOURCES += $(nodist_desktop_shell_la_SOURCES)
738 endif
739
740 if ENABLE_FULLSCREEN_SHELL
741
742 module_LTLIBRARIES += fullscreen-shell.la
743
744 fullscreen_shell_la_CPPFLAGS =                  \
745         -I$(top_builddir)/protocol              \
746         -I$(top_srcdir)/shared                  \
747         -I$(top_srcdir)/src                     \
748         -I$(top_builddir)/src                   \
749         -DIN_WESTON
750
751 fullscreen_shell_la_LDFLAGS = -module -avoid-version
752 fullscreen_shell_la_LIBADD = $(COMPOSITOR_LIBS)
753 fullscreen_shell_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
754 fullscreen_shell_la_SOURCES =                   \
755         fullscreen-shell/fullscreen-shell.c
756 nodist_fullscreen_shell_la_SOURCES =                    \
757         protocol/fullscreen-shell-protocol.c            \
758         protocol/fullscreen-shell-server-protocol.h
759
760 BUILT_SOURCES += $(nodist_fullscreen_shell_la_SOURCES)
761 endif
762
763 if ENABLE_IVI_SHELL
764
765 module_LTLIBRARIES +=                           \
766         $(ivi_layout)                           \
767         $(ivi_shell)                            \
768         $(hmi_controller)
769
770 ivi_layout = ivi-layout.la
771 ivi_layout_la_LDFLAGS = -module -avoid-version
772 ivi_layout_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
773 ivi_layout_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
774 ivi_layout_la_SOURCES =                         \
775         ivi-shell/ivi-layout-export.h           \
776         ivi-shell/ivi-layout-private.h          \
777         ivi-shell/ivi-layout.c                  \
778         ivi-shell/ivi-layout-transition.c
779
780 ivi_shell = ivi-shell.la
781 ivi_shell_la_LDFLAGS = -module -avoid-version
782 ivi_shell_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
783 ivi_shell_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
784 ivi_shell_la_SOURCES =                          \
785         ivi-shell/ivi-shell.h                   \
786         ivi-shell/ivi-shell.c                   \
787         ivi-shell/ivi-layout-private.h
788 nodist_ivi_shell_la_SOURCES =                   \
789         protocol/ivi-application-protocol.c             \
790         protocol/ivi-application-server-protocol.h
791
792 BUILT_SOURCES += $(nodist_ivi_shell_la_SOURCES)
793
794 hmi_controller = hmi-controller.la
795 hmi_controller_la_LDFLAGS = -module -avoid-version
796 hmi_controller_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
797 hmi_controller_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
798 hmi_controller_la_SOURCES =                             \
799         ivi-shell/ivi-layout-export.h                   \
800         ivi-shell/hmi-controller.c
801 nodist_hmi_controller_la_SOURCES =                      \
802         protocol/ivi-hmi-controller-protocol.c          \
803         protocol/ivi-hmi-controller-server-protocol.h
804
805 BUILT_SOURCES += $(nodist_hmi_controller_la_SOURCES)
806
807 endif
808
809
810 if ENABLE_SCREEN_SHARING
811
812 module_LTLIBRARIES += screen-share.la
813
814 screen_share_la_CPPFLAGS = $(AM_CPPFLAGS) -DBINDIR='"$(bindir)"'
815 screen_share_la_LDFLAGS = -module -avoid-version
816 screen_share_la_LIBADD =                        \
817         $(COMPOSITOR_LIBS)                      \
818         $(SCREEN_SHARE_LIBS)                    \
819         libshared-cairo.la
820 screen_share_la_CFLAGS =                        \
821         $(COMPOSITOR_CFLAGS)                    \
822         $(SCREEN_SHARE_CFLAGS)                  \
823         $(GCC_CFLAGS)
824 screen_share_la_SOURCES =                       \
825         src/screen-share.c
826 nodist_screen_share_la_SOURCES =                        \
827         protocol/fullscreen-shell-protocol.c            \
828         protocol/fullscreen-shell-client-protocol.h
829
830 endif
831
832 if ENABLE_XWAYLAND
833
834 module_LTLIBRARIES += xwayland.la
835
836 xwayland_la_CPPFLAGS =                          \
837         -I$(top_builddir)/protocol              \
838         -I$(top_srcdir)/shared                  \
839         -I$(top_srcdir)/src                     \
840         -I$(top_builddir)/src                   \
841         -I$(top_builddir)/xwayland              \
842         -DDATADIR='"$(datadir)"'                \
843         -DMODULEDIR='"$(moduledir)"'            \
844         -DLIBEXECDIR='"$(libexecdir)"'          \
845         -DXSERVER_PATH='"@XSERVER_PATH@"'
846
847 xwayland_la_LDFLAGS = -module -avoid-version
848 xwayland_la_LIBADD =                    \
849         $(XWAYLAND_LIBS)                \
850         $(top_builddir)/libshared-cairo.la
851 xwayland_la_CFLAGS =                            \
852         $(GCC_CFLAGS)                           \
853         $(COMPOSITOR_CFLAGS)                    \
854         $(PIXMAN_CFLAGS)                        \
855         $(CAIRO_CFLAGS)
856 xwayland_la_SOURCES =                           \
857         xwayland/xwayland.h                     \
858         xwayland/window-manager.c               \
859         xwayland/selection.c                    \
860         xwayland/dnd.c                          \
861         xwayland/launcher.c                     \
862         xwayland/hash.c                         \
863         xwayland/hash.h
864 endif
865
866
867 #
868 # Shared utilities
869 #
870
871 noinst_LTLIBRARIES += libshared.la libshared-cairo.la
872
873 libshared_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
874
875 libshared_la_SOURCES =                          \
876         shared/config-parser.c                  \
877         shared/option-parser.c                  \
878         shared/config-parser.h                  \
879         shared/os-compatibility.c               \
880         shared/os-compatibility.h
881
882 libshared_cairo_la_CFLAGS =                     \
883         -DDATADIR='"$(datadir)"'                \
884         $(GCC_CFLAGS)                           \
885         $(COMPOSITOR_CFLAGS)                    \
886         $(PIXMAN_CFLAGS)                        \
887         $(CAIRO_CFLAGS)                         \
888         $(PNG_CFLAGS)                           \
889         $(WEBP_CFLAGS)
890
891 libshared_cairo_la_LIBADD =                     \
892         $(PIXMAN_LIBS)                          \
893         $(CAIRO_LIBS)                           \
894         $(PNG_LIBS)                             \
895         $(WEBP_LIBS)                            \
896         $(JPEG_LIBS)
897
898 libshared_cairo_la_SOURCES =                    \
899         $(libshared_la_SOURCES)                 \
900         shared/image-loader.c                   \
901         shared/image-loader.h                   \
902         shared/cairo-util.c                     \
903         shared/frame.c                          \
904         shared/cairo-util.h
905
906
907 #
908 # tests subdirectory
909 #
910
911 TESTS = $(shared_tests) $(module_tests) $(weston_tests)
912
913 shared_tests =                                  \
914         config-parser.test                      \
915         vertex-clip.test
916
917 module_tests =                                  \
918         surface-test.la                         \
919         surface-global-test.la
920
921 weston_tests =                                  \
922         bad_buffer.weston                       \
923         keyboard.weston                         \
924         event.weston                            \
925         button.weston                           \
926         text.weston                             \
927         presentation.weston                     \
928         roles.weston                            \
929         subsurface.weston
930
931
932 AM_TESTS_ENVIRONMENT = \
933         abs_builddir='$(abs_builddir)'; export abs_builddir;
934
935 TEST_EXTENSIONS = .la .weston
936 LA_LOG_COMPILER = $(srcdir)/tests/weston-tests-env
937 WESTON_LOG_COMPILER = $(srcdir)/tests/weston-tests-env
938
939 clean-local:
940         -rm -rf logs
941
942 # To remove when automake 1.11 support is dropped
943 export abs_builddir
944
945 noinst_LTLIBRARIES +=                   \
946         weston-test.la                  \
947         $(module_tests)                 \
948         libtest-runner.la               \
949         libtest-client.la
950
951 noinst_PROGRAMS +=                      \
952         $(setbacklight)                 \
953         $(shared_tests)                 \
954         $(weston_tests)                 \
955         matrix-test
956
957 test_module_ldflags = \
958         -module -avoid-version -rpath $(libdir) $(COMPOSITOR_LIBS)
959
960 surface_global_test_la_SOURCES = tests/surface-global-test.c
961 surface_global_test_la_LDFLAGS = $(test_module_ldflags)
962 surface_global_test_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
963
964 surface_test_la_SOURCES = tests/surface-test.c
965 surface_test_la_LDFLAGS = $(test_module_ldflags)
966 surface_test_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
967
968 weston_test_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
969 weston_test_la_LDFLAGS = $(test_module_ldflags)
970 weston_test_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
971 weston_test_la_SOURCES = tests/weston-test.c
972 nodist_weston_test_la_SOURCES =                 \
973         protocol/wayland-test-protocol.c        \
974         protocol/wayland-test-server-protocol.h
975
976 if ENABLE_EGL
977 weston_test_la_CFLAGS += $(EGL_TESTS_CFLAGS)
978 weston_test_la_LDFLAGS += $(EGL_TESTS_LIBS)
979 endif
980
981 libtest_runner_la_SOURCES =                     \
982         tests/weston-test-runner.c              \
983         tests/weston-test-runner.h
984 libtest_runner_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
985
986 config_parser_test_SOURCES = tests/config-parser-test.c
987 config_parser_test_LDADD = libshared.la libtest-runner.la $(COMPOSITOR_LIBS)
988
989 vertex_clip_test_SOURCES =                      \
990         tests/vertex-clip-test.c                \
991         src/vertex-clipping.c                   \
992         src/vertex-clipping.h
993 vertex_clip_test_LDADD = libtest-runner.la -lm -lrt
994
995 libtest_client_la_SOURCES =                     \
996         tests/weston-test-client-helper.c       \
997         tests/weston-test-client-helper.h
998 nodist_libtest_client_la_SOURCES =              \
999         protocol/wayland-test-protocol.c        \
1000         protocol/wayland-test-client-protocol.h
1001 libtest_client_la_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1002 libtest_client_la_LIBADD = $(TEST_CLIENT_LIBS) libshared.la libtest-runner.la
1003
1004 bad_buffer_weston_SOURCES = tests/bad-buffer-test.c
1005 bad_buffer_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1006 bad_buffer_weston_LDADD = libtest-client.la
1007
1008 keyboard_weston_SOURCES = tests/keyboard-test.c
1009 keyboard_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1010 keyboard_weston_LDADD = libtest-client.la
1011
1012 event_weston_SOURCES = tests/event-test.c
1013 event_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1014 event_weston_LDADD = libtest-client.la
1015
1016 button_weston_SOURCES = tests/button-test.c
1017 button_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1018 button_weston_LDADD = libtest-client.la
1019
1020 text_weston_SOURCES = tests/text-test.c
1021 nodist_text_weston_SOURCES =                    \
1022         protocol/text-protocol.c                \
1023         protocol/text-client-protocol.h
1024 text_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1025 text_weston_LDADD = libtest-client.la
1026
1027 subsurface_weston_SOURCES = tests/subsurface-test.c
1028 subsurface_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1029 subsurface_weston_LDADD = libtest-client.la
1030
1031 presentation_weston_SOURCES = tests/presentation-test.c
1032 nodist_presentation_weston_SOURCES =            \
1033         protocol/presentation_timing-protocol.c \
1034         protocol/presentation_timing-client-protocol.h
1035 presentation_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1036 presentation_weston_LDADD = libtest-client.la
1037
1038 roles_weston_SOURCES = tests/roles-test.c
1039 roles_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
1040 roles_weston_LDADD = libtest-client.la
1041
1042 if ENABLE_EGL
1043 weston_tests += buffer-count.weston
1044 buffer_count_weston_SOURCES = tests/buffer-count-test.c
1045 buffer_count_weston_CFLAGS = $(GCC_CFLAGS) $(EGL_TESTS_CFLAGS)
1046 buffer_count_weston_LDADD = libtest-client.la $(EGL_TESTS_LIBS)
1047 endif
1048
1049 if ENABLE_XWAYLAND_TEST
1050 weston_tests += xwayland-test.weston
1051 xwayland_test_weston_SOURCES = tests/xwayland-test.c
1052 xwayland_test_weston_CFLAGS = $(GCC_CFLAGS) $(XWAYLAND_TEST_CFLAGS)
1053 xwayland_test_weston_LDADD = libtest-client.la $(XWAYLAND_TEST_LIBS)
1054 endif
1055
1056 matrix_test_SOURCES =                           \
1057         tests/matrix-test.c                     \
1058         shared/matrix.c                         \
1059         shared/matrix.h
1060 matrix_test_CPPFLAGS = -DUNIT_TEST
1061 matrix_test_LDADD = -lm -lrt
1062
1063 if BUILD_SETBACKLIGHT
1064 noinst_PROGRAMS += setbacklight
1065 setbacklight_SOURCES =                          \
1066         tests/setbacklight.c                    \
1067         src/libbacklight.c                      \
1068         src/libbacklight.h
1069 setbacklight_CFLAGS = $(AM_CFLAGS) $(SETBACKLIGHT_CFLAGS)
1070 setbacklight_LDADD = $(SETBACKLIGHT_LIBS)
1071 endif
1072
1073 EXTRA_DIST += tests/weston-tests-env
1074
1075 BUILT_SOURCES +=                                \
1076         protocol/wayland-test-protocol.c        \
1077         protocol/wayland-test-server-protocol.h \
1078         protocol/wayland-test-client-protocol.h \
1079         protocol/text-protocol.c                \
1080         protocol/text-client-protocol.h
1081
1082 EXTRA_DIST +=                                   \
1083         protocol/desktop-shell.xml              \
1084         protocol/screenshooter.xml              \
1085         protocol/text.xml                       \
1086         protocol/input-method.xml               \
1087         protocol/workspaces.xml                 \
1088         protocol/text-cursor-position.xml       \
1089         protocol/wayland-test.xml               \
1090         protocol/xdg-shell.xml                  \
1091         protocol/fullscreen-shell.xml           \
1092         protocol/presentation_timing.xml        \
1093         protocol/scaler.xml                     \
1094         protocol/ivi-application.xml            \
1095         protocol/ivi-hmi-controller.xml
1096
1097 man_MANS = weston.1 weston.ini.5
1098
1099 if ENABLE_DRM_COMPOSITOR
1100 man_MANS += weston-drm.7
1101 endif
1102
1103 MAN_SUBSTS =                                                            \
1104         -e 's|__weston_native_backend__|$(WESTON_NATIVE_BACKEND)|g'     \
1105         -e 's|__weston_modules_dir__|$(pkglibdir)|g'                    \
1106         -e 's|__weston_shell_client__|$(WESTON_SHELL_CLIENT)|g'         \
1107         -e 's|__version__|$(PACKAGE_VERSION)|g'
1108
1109 SUFFIXES = .1 .5 .7 .man
1110
1111 %.1 %.5 %.7 : man/%.man
1112         $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
1113
1114 EXTRA_DIST +=                                   \
1115         man/weston.man                          \
1116         man/weston-drm.man                      \
1117         man/weston.ini.man
1118
1119 CLEANFILES += $(man_MANS)
1120
1121
1122 protocol/%-protocol.c : $(top_srcdir)/protocol/%.xml
1123         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) code < $< > $@
1124
1125 protocol/%-server-protocol.h : $(top_srcdir)/protocol/%.xml
1126         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) server-header < $< > $@
1127
1128 protocol/%-client-protocol.h : $(top_srcdir)/protocol/%.xml
1129         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) client-header < $< > $@