blob: a247c3d4e824c367c751a4a1a42880efc16f622e [file] [log] [blame]
Kristian Høgsberge895f142014-01-27 21:46:30 -08001bin_PROGRAMS =
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -08002noinst_PROGRAMS =
Kristian Høgsberge73eccd2014-01-31 16:15:11 -08003libexec_PROGRAMS =
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -08004moduledir = $(libdir)/weston
5module_LTLIBRARIES =
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -08006noinst_LTLIBRARIES =
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -08007BUILT_SOURCES =
Kristian Høgsberge895f142014-01-27 21:46:30 -08008
Kristian Høgsberg850f24c2012-02-09 09:20:44 -05009DISTCHECK_CONFIGURE_FLAGS = --disable-setuid-install
Kristian Høgsberg24639cc2013-02-25 13:03:15 -050010
Kristian Høgsberg08229422014-02-01 00:33:04 -080011EXTRA_DIST = weston.ini.in
Neil Robertse3de16e2013-11-22 16:46:00 +000012
13weston.ini : $(srcdir)/weston.ini.in
14 $(AM_V_GEN)$(SED) \
15 -e 's|@bindir[@]|$(bindir)|g' \
16 -e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' \
17 -e 's|@libexecdir[@]|$(libexecdir)|g' \
18 $< > $@
19
Kristian Høgsbergcd312752014-02-01 00:38:15 -080020all-local : weston.ini
Kristian Høgsberg98463742013-12-16 23:12:46 -080021
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -080022AM_CFLAGS = $(GCC_CFLAGS)
23
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080024AM_CPPFLAGS = \
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -080025 -I$(top_srcdir)/src \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080026 -I$(top_builddir)/src \
Kristian Høgsberge73eccd2014-01-31 16:15:11 -080027 -I$(top_builddir)/clients \
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -080028 -I$(top_builddir)/tests \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080029 -I$(top_srcdir)/shared \
Quentin Glidic088ba5e2014-02-01 21:39:12 +010030 -I$(top_builddir)/protocol \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080031 -DDATADIR='"$(datadir)"' \
32 -DMODULEDIR='"$(moduledir)"' \
Kristian Høgsberge73eccd2014-01-31 16:15:11 -080033 -DLIBEXECDIR='"$(libexecdir)"' \
34 -DBINDIR='"$(bindir)"'
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080035
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -080036CLEANFILES = weston.ini $(BUILT_SOURCES)
Kristian Høgsberg5b9f9f82014-01-27 21:40:28 -080037
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080038bin_PROGRAMS += weston
39
40weston_LDFLAGS = -export-dynamic
41weston_CPPFLAGS = $(AM_CPPFLAGS) -DIN_WESTON
42weston_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) $(LIBUNWIND_CFLAGS)
43weston_LDADD = $(COMPOSITOR_LIBS) $(LIBUNWIND_LIBS) \
Kristian Høgsberg0987f812014-01-27 22:02:41 -080044 $(DLOPEN_LIBS) -lm libshared.la
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080045
46weston_SOURCES = \
47 src/git-version.h \
48 src/log.c \
49 src/compositor.c \
50 src/compositor.h \
51 src/input.c \
52 src/data-device.c \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080053 src/screenshooter.c \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080054 src/clipboard.c \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080055 src/zoom.c \
56 src/text-backend.c \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080057 src/bindings.c \
58 src/animation.c \
59 src/noop-renderer.c \
60 src/pixman-renderer.c \
61 src/pixman-renderer.h \
62 shared/matrix.c \
63 shared/matrix.h \
64 shared/zalloc.h \
65 src/weston-egl-ext.h
66
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -080067nodist_weston_SOURCES = \
68 protocol/screenshooter-protocol.c \
69 protocol/screenshooter-server-protocol.h \
70 protocol/text-cursor-position-protocol.c \
71 protocol/text-cursor-position-server-protocol.h \
72 protocol/text-protocol.c \
73 protocol/text-server-protocol.h \
74 protocol/input-method-protocol.c \
75 protocol/input-method-server-protocol.h \
76 protocol/workspaces-protocol.c \
77 protocol/workspaces-server-protocol.h \
78 protocol/scaler-protocol.c \
79 protocol/scaler-server-protocol.h
80
81BUILT_SOURCES += $(nodist_weston_SOURCES)
82
Kristian Høgsberg0aa19e92014-01-31 16:33:48 -080083# Track this dependency explicitly instead of using BUILT_SOURCES. We
84# add BUILT_SOURCES to CLEANFILES, but we want to keep git-version.h
85# in case we're building from tarballs.
86
87src/compositor.c : $(top_builddir)/src/git-version.h
88
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -080089noinst_LTLIBRARIES += \
90 libsession-helper.la
91
92libsession_helper_la_SOURCES = \
93 src/weston-launch.h \
94 src/launcher-util.c \
95 src/launcher-util.h
96libsession_helper_la_CFLAGS = $(GCC_CFLAGS) $(LIBDRM_CFLAGS) $(PIXMAN_CFLAGS) $(COMPOSITOR_CFLAGS)
97libsession_helper_la_LIBADD = $(LIBDRM_LIBS)
98
99if ENABLE_DBUS
100if HAVE_SYSTEMD_LOGIN
101libsession_helper_la_SOURCES += \
102 src/dbus.h \
103 src/dbus.c \
104 src/logind-util.h \
105 src/logind-util.c
106libsession_helper_la_CFLAGS += $(SYSTEMD_LOGIN_CFLAGS) $(DBUS_CFLAGS)
107libsession_helper_la_LIBADD += $(SYSTEMD_LOGIN_LIBS) $(DBUS_LIBS)
108endif
109endif
110
Kristian Høgsberg0aa19e92014-01-31 16:33:48 -0800111if HAVE_GIT_REPO
112src/git-version.h : $(top_srcdir)/.git/logs/HEAD
113 $(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)')\"" > $@
Kristian Høgsberg1d2dd072014-02-03 10:55:51 -0800114else
115src/git-version.h :
116 $(AM_V_GEN)echo "#define BUILD_ID \"unknown (not built from git or tarball)\"" > $@
117
Kristian Høgsberg0aa19e92014-01-31 16:33:48 -0800118endif
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800119
120.FORCE :
121
122if BUILD_WESTON_LAUNCH
123bin_PROGRAMS += weston-launch
124weston_launch_SOURCES = src/weston-launch.c src/weston-launch.h
125weston_launch_CPPFLAGS = -DBINDIR='"$(bindir)"'
126weston_launch_CFLAGS= \
127 $(GCC_CFLAGS) \
128 $(PAM_CFLAGS) \
129 $(SYSTEMD_LOGIN_CFLAGS) \
130 $(LIBDRM_CFLAGS)
131weston_launch_LDADD = $(PAM_LIBS) $(SYSTEMD_LOGIN_LIBS) $(LIBDRM_LIBS)
132
133if ENABLE_SETUID_INSTALL
134install-exec-hook:
135 chown root $(DESTDIR)$(bindir)/weston-launch
136 chmod u+s $(DESTDIR)$(bindir)/weston-launch
137endif
138
139endif # BUILD_WESTON_LAUNCH
140
141pkgconfigdir = $(libdir)/pkgconfig
142pkgconfig_DATA = src/weston.pc
143
144westonincludedir = $(includedir)/weston
145westoninclude_HEADERS = \
146 src/version.h \
147 src/compositor.h \
148 shared/matrix.h \
149 shared/config-parser.h \
150 shared/zalloc.h
151
152if ENABLE_EGL
153module_LTLIBRARIES += gl-renderer.la
154gl_renderer_la_LDFLAGS = -module -avoid-version
155gl_renderer_la_LIBADD = $(COMPOSITOR_LIBS) $(EGL_LIBS)
156gl_renderer_la_CFLAGS = \
157 $(COMPOSITOR_CFLAGS) \
158 $(EGL_CFLAGS) \
159 $(GCC_CFLAGS)
160gl_renderer_la_SOURCES = \
161 src/gl-renderer.h \
162 src/gl-renderer.c \
163 src/vertex-clipping.c \
164 src/vertex-clipping.h
165endif
166
167if ENABLE_X11_COMPOSITOR
168module_LTLIBRARIES += x11-backend.la
169x11_backend_la_LDFLAGS = -module -avoid-version
170x11_backend_la_LIBADD = $(COMPOSITOR_LIBS) $(X11_COMPOSITOR_LIBS) \
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800171 libshared-cairo.la
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800172x11_backend_la_CFLAGS = \
173 $(COMPOSITOR_CFLAGS) \
174 $(EGL_CFLAGS) \
175 $(PIXMAN_CFLAGS) \
176 $(CAIRO_CFLAGS) \
177 $(X11_COMPOSITOR_CFLAGS) \
178 $(GCC_CFLAGS)
179x11_backend_la_SOURCES = src/compositor-x11.c
180endif
181
Jonas Ådahle0de3c22014-03-12 22:08:42 +0100182INPUT_BACKEND_SOURCES = src/udev-input.h
183
184if ENABLE_LIBINPUT_BACKEND
185INPUT_BACKEND_LIBS = $(LIBINPUT_BACKEND_LIBS)
186INPUT_BACKEND_SOURCES += \
187 src/libinput-seat.c \
188 src/libinput-seat.h \
189 src/libinput-device.c \
190 src/libinput-device.h
191else
192INPUT_BACKEND_SOURCES += \
193 src/filter.c \
194 src/filter.h \
195 src/udev-seat.c \
196 src/udev-seat.h \
197 src/evdev.c \
198 src/evdev.h \
199 src/evdev-touchpad.c
200endif
201
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800202if ENABLE_DRM_COMPOSITOR
203module_LTLIBRARIES += drm-backend.la
204drm_backend_la_LDFLAGS = -module -avoid-version
205drm_backend_la_LIBADD = \
206 $(COMPOSITOR_LIBS) \
207 $(DRM_COMPOSITOR_LIBS) \
Jonas Ådahle0de3c22014-03-12 22:08:42 +0100208 $(INPUT_BACKEND_LIBS) \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100209 libshared.la -lrt \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800210 libsession-helper.la
211drm_backend_la_CFLAGS = \
212 $(COMPOSITOR_CFLAGS) \
213 $(EGL_CFLAGS) \
214 $(DRM_COMPOSITOR_CFLAGS) \
215 $(GCC_CFLAGS)
216drm_backend_la_SOURCES = \
217 src/compositor-drm.c \
Jonas Ådahle0de3c22014-03-12 22:08:42 +0100218 $(INPUT_BACKEND_SOURCES) \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800219 src/libbacklight.c \
220 src/libbacklight.h
221
222if ENABLE_VAAPI_RECORDER
223drm_backend_la_SOURCES += src/vaapi-recorder.c src/vaapi-recorder.h
224drm_backend_la_LIBADD += $(LIBVA_LIBS)
225drm_backend_la_CFLAGS += $(LIBVA_CFLAGS)
226endif
227endif
228
229if ENABLE_WAYLAND_COMPOSITOR
230module_LTLIBRARIES += wayland-backend.la
231wayland_backend_la_LDFLAGS = -module -avoid-version
232wayland_backend_la_LIBADD = \
233 $(COMPOSITOR_LIBS) \
234 $(WAYLAND_COMPOSITOR_LIBS) \
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800235 libshared-cairo.la
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800236wayland_backend_la_CFLAGS = \
237 $(COMPOSITOR_CFLAGS) \
238 $(EGL_CFLAGS) \
239 $(PIXMAN_CFLAGS) \
240 $(CAIRO_CFLAGS) \
241 $(WAYLAND_COMPOSITOR_CFLAGS) \
242 $(GCC_CFLAGS)
243wayland_backend_la_SOURCES = src/compositor-wayland.c
Jason Ekstrand53ee0dc2014-04-02 19:53:54 -0500244nodist_wayland_backend_la_SOURCES = \
245 protocol/fullscreen-shell-protocol.c \
246 protocol/fullscreen-shell-client-protocol.h
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800247endif
248
249if ENABLE_RPI_COMPOSITOR
250if INSTALL_RPI_COMPOSITOR
251module_LTLIBRARIES += rpi-backend.la
252else
253noinst_LTLIBRARIES += rpi-backend.la
254endif
255
256rpi_backend_la_LDFLAGS = -module -avoid-version
257rpi_backend_la_LIBADD = $(COMPOSITOR_LIBS) \
258 $(RPI_COMPOSITOR_LIBS) \
259 $(RPI_BCM_HOST_LIBS) \
Jonas Ådahle0de3c22014-03-12 22:08:42 +0100260 $(INPUT_BACKEND_LIBS) \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800261 libsession-helper.la \
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800262 libshared.la
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800263rpi_backend_la_CFLAGS = \
264 $(GCC_CFLAGS) \
265 $(COMPOSITOR_CFLAGS) \
266 $(RPI_COMPOSITOR_CFLAGS) \
267 $(RPI_BCM_HOST_CFLAGS)
268rpi_backend_la_SOURCES = \
269 src/compositor-rpi.c \
270 src/rpi-renderer.c \
271 src/rpi-renderer.h \
272 src/rpi-bcm-stubs.h \
Jonas Ådahle0de3c22014-03-12 22:08:42 +0100273 $(INPUT_BACKEND_SOURCES)
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800274
275if ENABLE_EGL
276rpi_backend_la_LIBADD += $(EGL_LIBS)
277rpi_backend_la_CFLAGS += $(EGL_CFLAGS)
278endif
279
280endif
281
282if ENABLE_HEADLESS_COMPOSITOR
283module_LTLIBRARIES += headless-backend.la
284headless_backend_la_LDFLAGS = -module -avoid-version
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800285headless_backend_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
286headless_backend_la_CFLAGS = $(COMPOSITOR_CFLAGS) $(GCC_CFLAGS)
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800287headless_backend_la_SOURCES = src/compositor-headless.c
288endif
289
290if ENABLE_FBDEV_COMPOSITOR
291module_LTLIBRARIES += fbdev-backend.la
292fbdev_backend_la_LDFLAGS = -module -avoid-version
293fbdev_backend_la_LIBADD = \
294 $(COMPOSITOR_LIBS) \
295 $(FBDEV_COMPOSITOR_LIBS) \
Jonas Ådahle0de3c22014-03-12 22:08:42 +0100296 $(INPUT_BACKEND_LIBS) \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800297 libsession-helper.la \
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800298 libshared.la
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800299fbdev_backend_la_CFLAGS = \
300 $(COMPOSITOR_CFLAGS) \
301 $(EGL_CFLAGS) \
302 $(FBDEV_COMPOSITOR_CFLAGS) \
303 $(PIXMAN_CFLAGS) \
304 $(GCC_CFLAGS)
305fbdev_backend_la_SOURCES = \
306 src/compositor-fbdev.c \
Jonas Ådahle0de3c22014-03-12 22:08:42 +0100307 $(INPUT_BACKEND_SOURCES)
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800308endif
309
310if ENABLE_RDP_COMPOSITOR
311module_LTLIBRARIES += rdp-backend.la
312rdp_backend_la_LDFLAGS = -module -avoid-version
313rdp_backend_la_LIBADD = $(COMPOSITOR_LIBS) \
314 $(RDP_COMPOSITOR_LIBS) \
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800315 libshared.la
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800316rdp_backend_la_CFLAGS = \
317 $(COMPOSITOR_CFLAGS) \
318 $(RDP_COMPOSITOR_CFLAGS) \
319 $(GCC_CFLAGS)
320rdp_backend_la_SOURCES = src/compositor-rdp.c
321endif
322
323if HAVE_LCMS
324module_LTLIBRARIES += cms-static.la
325cms_static_la_LDFLAGS = -module -avoid-version
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800326cms_static_la_LIBADD = $(COMPOSITOR_LIBS) $(LCMS_LIBS) libshared.la
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800327cms_static_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) $(LCMS_CFLAGS)
328cms_static_la_SOURCES = \
329 src/cms-static.c \
330 src/cms-helper.c \
331 src/cms-helper.h
332if ENABLE_COLORD
333module_LTLIBRARIES += cms-colord.la
334cms_colord_la_LDFLAGS = -module -avoid-version
335cms_colord_la_LIBADD = $(COMPOSITOR_LIBS) $(COLORD_LIBS)
336cms_colord_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) $(COLORD_CFLAGS)
337cms_colord_la_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100338 src/cms-colord.c \
339 src/cms-helper.c \
Kristian Høgsbergb7e3ef42014-01-27 23:05:52 -0800340 src/cms-helper.h
341endif
342endif
343
344noinst_PROGRAMS += spring-tool
345spring_tool_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
346spring_tool_LDADD = $(COMPOSITOR_LIBS) -lm
347spring_tool_SOURCES = \
348 src/spring-tool.c \
349 src/animation.c \
350 shared/matrix.c \
351 shared/matrix.h \
352 src/compositor.h
353
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800354if BUILD_CLIENTS
355
356bin_PROGRAMS += weston-terminal weston-info
357
358libexec_PROGRAMS += \
359 weston-desktop-shell \
360 weston-screenshooter \
361 weston-keyboard \
362 weston-simple-im
363
364demo_clients = \
365 weston-flower \
366 weston-image \
367 weston-cliptest \
368 weston-dnd \
369 weston-smoke \
370 weston-resizor \
371 weston-eventdemo \
372 weston-clickdot \
373 weston-transformed \
374 weston-fullscreen \
375 weston-stacking \
376 weston-calibrator \
377 weston-scaler
378
379if INSTALL_DEMO_CLIENTS
380bin_PROGRAMS += $(demo_clients)
381else
382noinst_PROGRAMS += $(demo_clients)
383endif
384
385
386if BUILD_SIMPLE_CLIENTS
387demo_clients += \
388 weston-simple-shm \
389 weston-simple-touch \
390 weston-multi-resource
391
Kristian Høgsbergfe84a972014-02-11 14:23:19 -0800392weston_simple_shm_SOURCES = clients/simple-shm.c
393nodist_weston_simple_shm_SOURCES = \
Kristian Høgsbergdfaf65b2014-02-07 17:01:57 -0800394 protocol/xdg-shell-protocol.c \
Jason Ekstrand428c24e2014-04-02 19:53:48 -0500395 protocol/xdg-shell-client-protocol.h \
396 protocol/fullscreen-shell-protocol.c \
397 protocol/fullscreen-shell-client-protocol.h
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800398weston_simple_shm_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800399weston_simple_shm_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800400
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800401weston_simple_touch_SOURCES = clients/simple-touch.c
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800402weston_simple_touch_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800403weston_simple_touch_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800404
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800405weston_multi_resource_SOURCES = clients/multi-resource.c
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800406weston_multi_resource_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800407weston_multi_resource_LDADD = $(SIMPLE_CLIENT_LIBS) libshared.la -lm
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800408endif
409
410if BUILD_SIMPLE_EGL_CLIENTS
411demo_clients += weston-simple-egl
Kristian Høgsbergfe84a972014-02-11 14:23:19 -0800412weston_simple_egl_SOURCES = clients/simple-egl.c
413nodist_weston_simple_egl_SOURCES = \
Kristian Høgsbergdfaf65b2014-02-07 17:01:57 -0800414 protocol/xdg-shell-protocol.c \
415 protocol/xdg-shell-client-protocol.h
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800416weston_simple_egl_CFLAGS = $(AM_CFLAGS) $(SIMPLE_EGL_CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800417weston_simple_egl_LDADD = $(SIMPLE_EGL_CLIENT_LIBS) -lm
418endif
419
420noinst_LTLIBRARIES += libtoytoolkit.la
421
422libtoytoolkit_la_SOURCES = \
423 clients/window.c \
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800424 clients/window.h
425
426nodist_libtoytoolkit_la_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100427 protocol/text-cursor-position-protocol.c \
428 protocol/text-cursor-position-client-protocol.h \
429 protocol/scaler-protocol.c \
430 protocol/scaler-client-protocol.h \
431 protocol/workspaces-protocol.c \
432 protocol/workspaces-client-protocol.h \
433 protocol/xdg-shell-protocol.c \
434 protocol/xdg-shell-client-protocol.h
Jasper St. Pierre0790e392013-12-09 14:58:00 -0500435
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800436BUILT_SOURCES += $(nodist_libtoytoolkit_la_SOURCES)
437
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800438
439libtoytoolkit_la_LIBADD = \
440 $(CLIENT_LIBS) \
441 $(CAIRO_EGL_LIBS) \
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800442 libshared-cairo.la -lrt -lm
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800443libtoytoolkit_la_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS) $(CAIRO_EGL_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800444
445weston_flower_SOURCES = clients/flower.c
446weston_flower_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800447weston_flower_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800448
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100449weston_screenshooter_SOURCES = \
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800450 clients/screenshot.c
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800451nodist_weston_screenshooter_SOURCES = \
452 protocol/screenshooter-protocol.c \
453 protocol/screenshooter-client-protocol.h
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800454weston_screenshooter_LDADD = $(CLIENT_LIBS) libshared.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800455weston_screenshooter_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800456
457weston_terminal_SOURCES = clients/terminal.c
458weston_terminal_LDADD = libtoytoolkit.la -lutil
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800459weston_terminal_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800460
461weston_image_SOURCES = clients/image.c
462weston_image_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800463weston_image_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800464
465weston_cliptest_SOURCES = clients/cliptest.c
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800466weston_cliptest_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800467weston_cliptest_LDADD = libtoytoolkit.la
468
469weston_dnd_SOURCES = clients/dnd.c
470weston_dnd_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800471weston_dnd_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800472
473weston_smoke_SOURCES = clients/smoke.c
474weston_smoke_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800475weston_smoke_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800476
477weston_resizor_SOURCES = clients/resizor.c
478weston_resizor_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800479weston_resizor_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800480
481weston_scaler_SOURCES = clients/scaler.c
482weston_scaler_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800483weston_scaler_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800484
485if HAVE_CAIRO_GLESV2
486demo_clients += weston-nested weston-nested-client
487
488weston_nested_SOURCES = clients/nested.c
489weston_nested_LDADD = libtoytoolkit.la $(SERVER_LIBS)
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800490weston_nested_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800491
492weston_nested_client_SOURCES = clients/nested-client.c
493weston_nested_client_LDADD = $(SIMPLE_EGL_CLIENT_LIBS) -lm
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800494weston_nested_client_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800495endif
496
497weston_eventdemo_SOURCES = clients/eventdemo.c
498weston_eventdemo_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800499weston_eventdemo_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800500
501weston_clickdot_SOURCES = clients/clickdot.c
502weston_clickdot_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800503weston_clickdot_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800504
505weston_transformed_SOURCES = clients/transformed.c
506weston_transformed_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800507weston_transformed_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800508
509weston_fullscreen_SOURCES = clients/fullscreen.c
Jason Ekstrand2bb72fe2014-04-02 19:53:52 -0500510nodist_weston_fullscreen_SOURCES = \
511 protocol/fullscreen-shell-protocol.c \
512 protocol/fullscreen-shell-client-protocol.h
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800513weston_fullscreen_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800514weston_fullscreen_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800515
516weston_stacking_SOURCES = clients/stacking.c
517weston_stacking_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800518weston_stacking_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800519
520weston_calibrator_SOURCES = clients/calibrator.c \
521 shared/matrix.c \
522 shared/matrix.h
523weston_calibrator_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800524weston_calibrator_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800525
526if BUILD_SUBSURFACES_CLIENT
527demo_clients += weston-subsurfaces
528weston_subsurfaces_SOURCES = clients/subsurfaces.c
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800529weston_subsurfaces_CFLAGS = \
530 $(AM_CFLAGS) \
531 $(SIMPLE_EGL_CLIENT_CFLAGS) \
532 $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800533weston_subsurfaces_LDADD = libtoytoolkit.la $(SIMPLE_EGL_CLIENT_LIBS) -lm
534endif
535
536if HAVE_PANGO
537demo_clients += weston-editor
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800538weston_editor_SOURCES = clients/editor.c
539nodist_weston_editor_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100540 protocol/text-protocol.c \
541 protocol/text-client-protocol.h
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800542weston_editor_LDADD = libtoytoolkit.la $(PANGO_LIBS)
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800543weston_editor_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS) $(PANGO_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800544endif
545
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800546weston_keyboard_SOURCES = clients/keyboard.c
547nodist_weston_keyboard_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100548 protocol/desktop-shell-client-protocol.h \
549 protocol/desktop-shell-protocol.c \
550 protocol/input-method-protocol.c \
551 protocol/input-method-client-protocol.h
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800552weston_keyboard_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800553weston_keyboard_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800554
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800555weston_simple_im_SOURCES = clients/weston-simple-im.c
556nodist_weston_simple_im_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100557 protocol/input-method-protocol.c \
558 protocol/input-method-client-protocol.h
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800559weston_simple_im_LDADD = $(CLIENT_LIBS)
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800560weston_simple_im_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800561
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800562weston_info_SOURCES = clients/weston-info.c
563weston_info_LDADD = $(WESTON_INFO_LIBS) libshared.la
Pekka Paalanen5124b532014-02-03 13:12:34 +0200564weston_info_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800565
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800566weston_desktop_shell_SOURCES = clients/desktop-shell.c
567nodist_weston_desktop_shell_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100568 protocol/desktop-shell-client-protocol.h \
569 protocol/desktop-shell-protocol.c
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800570weston_desktop_shell_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800571weston_desktop_shell_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800572
573if BUILD_FULL_GL_CLIENTS
574demo_clients += weston-gears
575weston_gears_SOURCES = clients/gears.c
576weston_gears_LDADD = libtoytoolkit.la
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800577weston_gears_CFLAGS = $(AM_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800578
579if HAVE_GLU
580libexec_PROGRAMS += weston-screensaver
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100581weston_screensaver_SOURCES = \
582 clients/wscreensaver.c \
583 clients/wscreensaver.h \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100584 clients/wscreensaver-glue.c \
585 clients/wscreensaver-glue.h \
586 clients/glmatrix.c \
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800587 clients/matrix3.xpm
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800588nodist_weston_screensaver_SOURCES = \
589 protocol/desktop-shell-client-protocol.h \
590 protocol/desktop-shell-protocol.c
591
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800592weston_screensaver_LDADD = libtoytoolkit.la $(GLU_LIBS)
Kristian Høgsberge5b4dce2014-02-05 22:00:59 -0800593weston_screensaver_CFLAGS = $(AM_CFLAGS) $(GLU_CFLAGS) $(CLIENT_CFLAGS)
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800594
595endif
596
597endif
598
599endif
600
601BUILT_SOURCES += \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100602 protocol/screenshooter-protocol.c \
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800603 protocol/screenshooter-client-protocol.h \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100604 protocol/text-cursor-position-client-protocol.h \
605 protocol/text-cursor-position-protocol.c \
606 protocol/text-protocol.c \
607 protocol/text-client-protocol.h \
608 protocol/input-method-protocol.c \
609 protocol/input-method-client-protocol.h \
610 protocol/desktop-shell-client-protocol.h \
611 protocol/desktop-shell-protocol.c \
612 protocol/scaler-client-protocol.h \
613 protocol/scaler-protocol.c \
614 protocol/workspaces-client-protocol.h \
615 protocol/workspaces-protocol.c \
Jason Ekstrand428c24e2014-04-02 19:53:48 -0500616 protocol/fullscreen-shell-protocol.c \
617 protocol/fullscreen-shell-client-protocol.h \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100618 protocol/xdg-shell-protocol.c \
619 protocol/xdg-shell-client-protocol.h
Kristian Høgsberge73eccd2014-01-31 16:15:11 -0800620
621
Kristian Høgsberg5b9f9f82014-01-27 21:40:28 -0800622westondatadir = $(datadir)/weston
623dist_westondata_DATA = \
624 data/wayland.svg \
625 data/wayland.png \
626 data/pattern.png \
627 data/terminal.png \
628 data/border.png \
629 data/icon_window.png \
630 data/sign_close.png \
631 data/sign_maximize.png \
632 data/sign_minimize.png
Kristian Høgsberge895f142014-01-27 21:46:30 -0800633
634
635if BUILD_WCAP_TOOLS
636bin_PROGRAMS += wcap-decode
637
638wcap_decode_SOURCES = \
639 wcap/main.c \
640 wcap/wcap-decode.c \
641 wcap/wcap-decode.h
642
643wcap_decode_CFLAGS = $(GCC_CFLAGS) $(WCAP_CFLAGS)
644wcap_decode_LDADD = $(WCAP_LIBS)
645endif
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -0800646
647
648if ENABLE_DESKTOP_SHELL
649
650module_LTLIBRARIES += desktop-shell.la
651
652desktop_shell_la_CPPFLAGS = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100653 -I$(top_builddir)/protocol \
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -0800654 -I$(top_srcdir)/shared \
655 -I$(top_srcdir)/src \
656 -I$(top_builddir)/src \
657 -I$(top_builddir)/desktop-shell \
658 -DDATADIR='"$(datadir)"' \
659 -DMODULEDIR='"$(moduledir)"' \
660 -DLIBEXECDIR='"$(libexecdir)"' \
661 -DIN_WESTON
662
663desktop_shell_la_LDFLAGS = -module -avoid-version
Kristian Høgsberg4c1bfc92014-02-11 14:21:39 -0800664desktop_shell_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -0800665desktop_shell_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
666desktop_shell_la_SOURCES = \
667 desktop-shell/shell.h \
668 desktop-shell/shell.c \
669 desktop-shell/exposay.c \
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800670 desktop-shell/input-panel.c
671nodist_desktop_shell_la_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100672 protocol/desktop-shell-protocol.c \
673 protocol/desktop-shell-server-protocol.h \
674 protocol/xdg-shell-protocol.c \
675 protocol/xdg-shell-server-protocol.h
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -0800676
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800677BUILT_SOURCES += $(nodist_desktop_shell_la_SOURCES)
Kristian Høgsbergbc00dbe2014-01-27 21:56:12 -0800678endif
679
Jason Ekstrand946a9482014-04-02 19:53:47 -0500680if ENABLE_FULLSCREEN_SHELL
681
682module_LTLIBRARIES += fullscreen-shell.la
683
684fullscreen_shell_la_CPPFLAGS = \
685 -I$(top_builddir)/protocol \
686 -I$(top_srcdir)/shared \
687 -I$(top_srcdir)/src \
688 -I$(top_builddir)/src \
689 -DIN_WESTON
690
691fullscreen_shell_la_LDFLAGS = -module -avoid-version
692fullscreen_shell_la_LIBADD = $(COMPOSITOR_LIBS)
693fullscreen_shell_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
694fullscreen_shell_la_SOURCES = \
695 fullscreen-shell/fullscreen-shell.c
696nodist_fullscreen_shell_la_SOURCES = \
697 protocol/fullscreen-shell-protocol.c \
698 protocol/fullscreen-shell-server-protocol.h
699
700BUILT_SOURCES += $(nodist_fullscreen_shell_la_SOURCES)
701endif
Kristian Høgsberg058bd322014-01-27 21:59:55 -0800702
Jason Ekstrand47928d82014-04-02 19:54:01 -0500703if ENABLE_SCREEN_SHARING
704
705module_LTLIBRARIES += screen-share.la
706
707screen_share_la_CPPFLAGS = $(AM_CPPFLAGS) -DBINDIR='"$(bindir)"'
708screen_share_la_LDFLAGS = -module -avoid-version
709screen_share_la_LIBADD = \
710 $(COMPOSITOR_LIBS) \
711 $(SCREEN_SHARE_LIBS) \
712 libshared-cairo.la
713screen_share_la_CFLAGS = \
714 $(COMPOSITOR_CFLAGS) \
715 $(SCREEN_SHARE_CFLAGS) \
716 $(GCC_CFLAGS)
717screen_share_la_SOURCES = \
718 src/screen-share.c
719nodist_screen_share_la_SOURCES = \
720 protocol/fullscreen-shell-protocol.c \
721 protocol/fullscreen-shell-client-protocol.h
722
723endif
724
Kristian Høgsberg058bd322014-01-27 21:59:55 -0800725if ENABLE_XWAYLAND
726
727module_LTLIBRARIES += xwayland.la
728
729xwayland_la_CPPFLAGS = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100730 -I$(top_builddir)/protocol \
Kristian Høgsberg058bd322014-01-27 21:59:55 -0800731 -I$(top_srcdir)/shared \
732 -I$(top_srcdir)/src \
733 -I$(top_builddir)/src \
734 -I$(top_builddir)/xwayland \
735 -DDATADIR='"$(datadir)"' \
736 -DMODULEDIR='"$(moduledir)"' \
737 -DLIBEXECDIR='"$(libexecdir)"' \
738 -DXSERVER_PATH='"@XSERVER_PATH@"'
739
740xwayland_la_LDFLAGS = -module -avoid-version
741xwayland_la_LIBADD = \
742 $(XWAYLAND_LIBS) \
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800743 $(top_builddir)/libshared-cairo.la
Kristian Høgsberg058bd322014-01-27 21:59:55 -0800744xwayland_la_CFLAGS = \
745 $(GCC_CFLAGS) \
746 $(COMPOSITOR_CFLAGS) \
747 $(PIXMAN_CFLAGS) \
748 $(CAIRO_CFLAGS)
749xwayland_la_SOURCES = \
750 xwayland/xwayland.h \
751 xwayland/window-manager.c \
752 xwayland/selection.c \
753 xwayland/dnd.c \
754 xwayland/launcher.c \
Kristian Høgsberg058bd322014-01-27 21:59:55 -0800755 xwayland/hash.c \
756 xwayland/hash.h
Kristian Høgsberg058bd322014-01-27 21:59:55 -0800757endif
758
Kristian Høgsbergf9bc6f62014-01-27 22:26:29 -0800759
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800760#
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800761# Shared utilities
762#
763
764noinst_LTLIBRARIES += libshared.la libshared-cairo.la
765
766libshared_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
767
768libshared_la_SOURCES = \
769 shared/config-parser.c \
770 shared/option-parser.c \
771 shared/config-parser.h \
772 shared/os-compatibility.c \
773 shared/os-compatibility.h
774
775libshared_cairo_la_CFLAGS = \
776 -DDATADIR='"$(datadir)"' \
777 $(GCC_CFLAGS) \
778 $(COMPOSITOR_CFLAGS) \
779 $(PIXMAN_CFLAGS) \
780 $(CAIRO_CFLAGS) \
781 $(PNG_CFLAGS) \
782 $(WEBP_CFLAGS)
783
784libshared_cairo_la_LIBADD = \
785 $(PIXMAN_LIBS) \
786 $(CAIRO_LIBS) \
787 $(PNG_LIBS) \
788 $(WEBP_LIBS) \
789 $(JPEG_LIBS)
790
791libshared_cairo_la_SOURCES = \
792 $(libshared_la_SOURCES) \
793 shared/image-loader.c \
794 shared/image-loader.h \
795 shared/cairo-util.c \
796 shared/frame.c \
797 shared/cairo-util.h
798
799
800#
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800801# tests subdirectory
802#
803
804TESTS = $(shared_tests) $(module_tests) $(weston_tests)
805
806shared_tests = \
807 config-parser.test \
808 vertex-clip.test
809
810module_tests = \
811 surface-test.la \
812 surface-global-test.la
813
814weston_tests = \
815 bad_buffer.weston \
816 keyboard.weston \
817 event.weston \
818 button.weston \
819 text.weston \
820 subsurface.weston
821
822
823AM_TESTS_ENVIRONMENT = \
824 abs_builddir='$(abs_builddir)'; export abs_builddir;
825
826TEST_EXTENSIONS = .la .weston
827LA_LOG_COMPILER = $(srcdir)/tests/weston-tests-env
828WESTON_LOG_COMPILER = $(srcdir)/tests/weston-tests-env
829
830clean-local:
831 -rm -rf tests/logs
832
833# To remove when automake 1.11 support is dropped
834export abs_builddir
835
836noinst_LTLIBRARIES += \
837 weston-test.la \
838 $(module_tests) \
839 libtest-runner.la \
840 libtest-client.la
841
842noinst_PROGRAMS += \
843 $(setbacklight) \
844 $(shared_tests) \
845 $(weston_tests) \
846 matrix-test
847
848test_module_ldflags = \
849 -module -avoid-version -rpath $(libdir) $(COMPOSITOR_LIBS)
850
851surface_global_test_la_SOURCES = tests/surface-global-test.c
852surface_global_test_la_LDFLAGS = $(test_module_ldflags)
853surface_global_test_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
854
855surface_test_la_SOURCES = tests/surface-test.c
856surface_test_la_LDFLAGS = $(test_module_ldflags)
857surface_test_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
858
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800859weston_test_la_LIBADD = $(COMPOSITOR_LIBS) libshared.la
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800860weston_test_la_LDFLAGS = $(test_module_ldflags)
861weston_test_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800862weston_test_la_SOURCES = tests/weston-test.c
863nodist_weston_test_la_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100864 protocol/wayland-test-protocol.c \
865 protocol/wayland-test-server-protocol.h
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800866
867if ENABLE_EGL
868weston_test_la_CFLAGS += $(EGL_TESTS_CFLAGS)
869weston_test_la_LDFLAGS += $(EGL_TESTS_LIBS)
870endif
871
872libtest_runner_la_SOURCES = \
873 tests/weston-test-runner.c \
874 tests/weston-test-runner.h
875libtest_runner_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS)
876
877config_parser_test_SOURCES = tests/config-parser-test.c
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800878config_parser_test_LDADD = libshared.la libtest-runner.la $(COMPOSITOR_LIBS)
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800879
880vertex_clip_test_SOURCES = \
881 tests/vertex-clip-test.c \
882 src/vertex-clipping.c \
883 src/vertex-clipping.h
884vertex_clip_test_LDADD = libtest-runner.la -lm -lrt
885
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100886libtest_client_la_SOURCES = \
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800887 tests/weston-test-client-helper.c \
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800888 tests/weston-test-client-helper.h
889nodist_libtest_client_la_SOURCES = \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100890 protocol/wayland-test-protocol.c \
891 protocol/wayland-test-client-protocol.h
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800892libtest_client_la_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
Kristian Høgsberg0987f812014-01-27 22:02:41 -0800893libtest_client_la_LIBADD = $(TEST_CLIENT_LIBS) libshared.la libtest-runner.la
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800894
895bad_buffer_weston_SOURCES = tests/bad-buffer-test.c
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800896bad_buffer_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800897bad_buffer_weston_LDADD = libtest-client.la
898
899keyboard_weston_SOURCES = tests/keyboard-test.c
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800900keyboard_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800901keyboard_weston_LDADD = libtest-client.la
902
903event_weston_SOURCES = tests/event-test.c
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800904event_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800905event_weston_LDADD = libtest-client.la
906
907button_weston_SOURCES = tests/button-test.c
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800908button_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800909button_weston_LDADD = libtest-client.la
910
Kristian Høgsbergbece0ee2014-02-01 21:52:17 -0800911text_weston_SOURCES = tests/text-test.c
912nodist_text_weston_SOURCES = \
913 protocol/text-protocol.c \
914 protocol/text-client-protocol.h
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800915text_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800916text_weston_LDADD = libtest-client.la
917
918subsurface_weston_SOURCES = tests/subsurface-test.c
Kristian Høgsberg49fcd002014-02-03 11:05:41 -0800919subsurface_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800920subsurface_weston_LDADD = libtest-client.la
921
922if ENABLE_EGL
923weston_tests += buffer-count.weston
924buffer_count_weston_SOURCES = tests/buffer-count-test.c
925buffer_count_weston_CFLAGS = $(GCC_CFLAGS) $(EGL_TESTS_CFLAGS)
926buffer_count_weston_LDADD = libtest-client.la $(EGL_TESTS_LIBS)
927endif
928
929if ENABLE_XWAYLAND_TEST
930weston_tests += xwayland.weston
931xwayland_weston_SOURCES = tests/xwayland-test.c
932xwayland_weston_CFLAGS = $(GCC_CFLAGS) $(XWAYLAND_TEST_CFLAGS)
933xwayland_weston_LDADD = libtest-client.la $(XWAYLAND_TEST_LIBS)
934endif
935
936matrix_test_SOURCES = \
937 tests/matrix-test.c \
938 shared/matrix.c \
939 shared/matrix.h
940matrix_test_CPPFLAGS = -DUNIT_TEST
941matrix_test_LDADD = -lm -lrt
942
943if BUILD_SETBACKLIGHT
944noinst_PROGRAMS += setbacklight
945setbacklight_SOURCES = \
946 tests/setbacklight.c \
947 src/libbacklight.c \
948 src/libbacklight.h
949setbacklight_CFLAGS = $(AM_CFLAGS) $(SETBACKLIGHT_CFLAGS)
950setbacklight_LDADD = $(SETBACKLIGHT_LIBS)
951endif
952
953EXTRA_DIST += tests/weston-tests-env
954
955BUILT_SOURCES += \
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100956 protocol/wayland-test-protocol.c \
957 protocol/wayland-test-server-protocol.h \
958 protocol/wayland-test-client-protocol.h \
959 protocol/text-protocol.c \
960 protocol/text-client-protocol.h
Kristian Høgsberg1e80afa2014-01-31 14:03:09 -0800961
Kristian Høgsbergcd312752014-02-01 00:38:15 -0800962EXTRA_DIST += \
Kristian Høgsbergf9bc6f62014-01-27 22:26:29 -0800963 protocol/desktop-shell.xml \
964 protocol/screenshooter.xml \
Kristian Høgsbergf9bc6f62014-01-27 22:26:29 -0800965 protocol/text.xml \
966 protocol/input-method.xml \
967 protocol/workspaces.xml \
968 protocol/text-cursor-position.xml \
969 protocol/wayland-test.xml \
970 protocol/xdg-shell.xml \
Jason Ekstrand27e11672014-04-02 19:53:44 -0500971 protocol/fullscreen-shell.xml \
Kristian Høgsbergf9bc6f62014-01-27 22:26:29 -0800972 protocol/scaler.xml
973
Kristian Høgsberg68c5c102014-01-27 22:33:04 -0800974man_MANS = weston.1 weston.ini.5
975
976if ENABLE_DRM_COMPOSITOR
977man_MANS += weston-drm.7
978endif
979
980MAN_SUBSTS = \
981 -e 's|__weston_native_backend__|$(WESTON_NATIVE_BACKEND)|g' \
982 -e 's|__weston_modules_dir__|$(pkglibdir)|g' \
983 -e 's|__weston_shell_client__|$(WESTON_SHELL_CLIENT)|g' \
984 -e 's|__version__|$(PACKAGE_VERSION)|g'
985
986SUFFIXES = .1 .5 .7 .man
987
988%.1 %.5 %.7 : man/%.man
989 $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
990
991EXTRA_DIST += \
992 man/weston.man \
993 man/weston-drm.man \
994 man/weston.ini.man
995
996CLEANFILES += $(man_MANS)
997
998
Quentin Glidic088ba5e2014-02-01 21:39:12 +0100999protocol/%-protocol.c : $(top_srcdir)/protocol/%.xml
1000 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) code < $< > $@
Kristian Høgsberg08229422014-02-01 00:33:04 -08001001
Quentin Glidic088ba5e2014-02-01 21:39:12 +01001002protocol/%-server-protocol.h : $(top_srcdir)/protocol/%.xml
1003 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) server-header < $< > $@
Kristian Høgsberg08229422014-02-01 00:33:04 -08001004
Quentin Glidic088ba5e2014-02-01 21:39:12 +01001005protocol/%-client-protocol.h : $(top_srcdir)/protocol/%.xml
1006 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) client-header < $< > $@