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