blob: ec2723aa71540f6246c97dee9847543714e694bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
westondatadir = $(datadir)/weston
dist_westondata_DATA = \
wayland.svg \
$(wayland_icon_png) \
pattern.png \
terminal.png \
border.png
if HAVE_RSVG_CONVERT
wayland_icon_png = wayland.png
wayland.png : $(top_srcdir)/data/wayland.svg
$(RSVG_CONVERT) -w 128 -h 128 $< -o $@
endif
|