summaryrefslogtreecommitdiff
path: root/clients/Makefile.am
blob: eab8939db04a1543ba0b090c0949563ad0825c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
bin_PROGRAMS =					\
	$(terminal)

noinst_PROGRAMS =				\
	$(clients_programs)			\
	$(poppler_programs)			\
	$(simple_clients_programs)

libexec_PROGRAMS =				\
	$(desktop_shell)			\
	$(tablet_shell)

if BUILD_SIMPLE_CLIENTS
simple_clients_programs =			\
	simple-egl				\
	simple-shm				\
	simple-touch

simple_egl_SOURCES = simple-egl.c
simple_egl_LDADD = $(SIMPLE_CLIENT_LIBS) -lm

simple_shm_SOURCES = simple-shm.c
simple_shm_LDADD = $(SIMPLE_CLIENT_LIBS)

simple_touch_SOURCES = simple-touch.c
simple_touch_LDADD = $(SIMPLE_CLIENT_LIBS)
endif

if BUILD_CLIENTS
terminal = weston-terminal

clients_programs =				\
	flower					\
	screenshot				\
	image					\
	dnd					\
	smoke					\
	resizor					\
	eventdemo				\
	clickdot				\
	$(full_gl_client_programs)

desktop_shell = weston-desktop-shell
tablet_shell = weston-tablet-shell

noinst_LIBRARIES = libtoytoolkit.a

AM_CFLAGS = $(GCC_CFLAGS)
AM_CPPFLAGS =					\
	-DDATADIR='"$(datadir)"'		\
	-DBINDIR='"$(bindir)"'			\
	$(CLIENT_CFLAGS) $(CAIRO_EGL_CFLAGS)

libtoytoolkit_a_SOURCES =			\
	window.c				\
	window.h				\
	cairo-util.c				\
	cairo-util.h

toolkit_libs =						\
	libtoytoolkit.a					\
	../shared/libconfig-parser.la			\
	$(CLIENT_LIBS) $(CAIRO_EGL_LIBS) -lrt -lm

flower_SOURCES = flower.c
flower_LDADD = $(toolkit_libs)

screenshot_SOURCES = screenshot.c screenshooter-protocol.c
screenshot_LDADD = $(toolkit_libs)

weston_terminal_SOURCES = terminal.c
weston_terminal_LDADD = $(toolkit_libs) -lutil

image_SOURCES = image.c
image_LDADD = $(toolkit_libs)

dnd_SOURCES = dnd.c
dnd_LDADD = $(toolkit_libs)

smoke_SOURCES = smoke.c
smoke_LDADD = $(toolkit_libs)

resizor_SOURCES = resizor.c
resizor_LDADD = $(toolkit_libs)

eventdemo_SOURCES = eventdemo.c
eventdemo_LDADD = $(toolkit_libs)

clickdot_SOURCES = clickdot.c
clickdot_LDADD = $(toolkit_libs)

weston_desktop_shell_SOURCES =			\
	desktop-shell.c				\
	desktop-shell-client-protocol.h		\
	desktop-shell-protocol.c
weston_desktop_shell_LDADD = $(toolkit_libs)	\
	../shared/libconfig-parser.la

weston_tablet_shell_SOURCES =			\
	tablet-shell.c				\
	tablet-shell-client-protocol.h		\
	tablet-shell-protocol.c
weston_tablet_shell_LDADD = $(toolkit_libs)	\
	../shared/libconfig-parser.la

BUILT_SOURCES =					\
	screenshooter-client-protocol.h		\
	screenshooter-protocol.c		\
	desktop-shell-client-protocol.h		\
	desktop-shell-protocol.c		\
	tablet-shell-client-protocol.h		\
	tablet-shell-protocol.c

CLEANFILES = $(BUILT_SOURCES)
endif

if BUILD_FULL_GL_CLIENTS
full_gl_client_programs =			\
	gears					\
	wscreensaver

gears_SOURCES = gears.c
gears_LDADD = $(toolkit_libs)

wscreensaver_SOURCES =				\
	wscreensaver.c				\
	wscreensaver.h				\
	desktop-shell-client-protocol.h		\
	desktop-shell-protocol.c		\
	wscreensaver-glue.c			\
	wscreensaver-glue.h			\
	glmatrix.c				\
	matrix3.xpm
wscreensaver_LDADD = $(toolkit_libs) -lGLU
endif

@wayland_scanner_rules@

if HAVE_POPPLER
poppler_programs = view
view_SOURCES = view.c
view_LDADD = $(toolkit_libs) $(POPPLER_LIBS)
view_CPPFLAGS = $(AM_CPPFLAGS) $(POPPLER_CFLAGS)
endif