2009-08-07 13:10:39 -04:00
|
|
|
desktopdir=$(datadir)/applications
|
|
|
|
desktop_DATA = gnome-shell.desktop
|
|
|
|
|
|
|
|
# We substitute in bindir so it works as an autostart
|
|
|
|
# file when built in a non-system prefix
|
|
|
|
gnome-shell.desktop.in: gnome-shell.desktop.in.in
|
|
|
|
$(AM_V_GEN) sed -e "s|@bindir[@]|$(bindir)|" \
|
|
|
|
-e "s|@VERSION[@]|$(VERSION)|" \
|
|
|
|
$< > $@ || rm $@
|
|
|
|
|
|
|
|
# Placeholder until we add intltool
|
|
|
|
gnome-shell.desktop: gnome-shell.desktop.in
|
|
|
|
$(AM_V_GEN) sed s/^_// < $< > $@ || rm $@
|
|
|
|
|
2009-09-18 16:29:28 -04:00
|
|
|
imagesdir = $(pkgdatadir)/images
|
|
|
|
dist_images_DATA = \
|
|
|
|
close-black.svg \
|
2010-01-29 13:04:57 -05:00
|
|
|
magnifier.svg
|
2009-04-23 10:46:36 -04:00
|
|
|
|
2009-09-18 16:29:28 -04:00
|
|
|
themedir = $(pkgdatadir)/theme
|
|
|
|
dist_theme_DATA = \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/add-workspace.svg \
|
2009-11-11 19:26:52 -05:00
|
|
|
theme/close-window.svg \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/close.svg \
|
2010-01-13 21:48:12 -05:00
|
|
|
theme/corner-ripple.png \
|
2010-02-26 11:32:38 -05:00
|
|
|
theme/dialog-error.svg \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/gnome-shell.css \
|
|
|
|
theme/mosaic-view-active.svg \
|
|
|
|
theme/mosaic-view.svg \
|
2010-03-16 11:51:24 -04:00
|
|
|
theme/move-window-on-new.svg \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/remove-workspace.svg \
|
2009-09-18 16:29:28 -04:00
|
|
|
theme/scroll-button-down-hover.png \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/scroll-button-down.png \
|
2009-09-18 16:29:28 -04:00
|
|
|
theme/scroll-button-up-hover.png \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/scroll-button-up.png \
|
2010-02-09 00:57:42 -05:00
|
|
|
theme/scroll-hhandle.svg \
|
|
|
|
theme/scroll-vhandle.svg \
|
2009-11-06 18:32:41 -05:00
|
|
|
theme/section-back.svg \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/section-more.svg \
|
2010-02-15 19:50:36 -05:00
|
|
|
theme/section-more-open.svg \
|
2010-01-21 21:33:48 -05:00
|
|
|
theme/single-view-active.svg \
|
|
|
|
theme/single-view.svg \
|
2010-02-13 00:45:11 -05:00
|
|
|
theme/ws-switch-arrow-left.svg \
|
|
|
|
theme/ws-switch-arrow-right.svg
|
2010-01-21 21:33:48 -05:00
|
|
|
|
2009-09-18 16:29:28 -04:00
|
|
|
|
2009-04-23 10:46:36 -04:00
|
|
|
schemadir = @GCONF_SCHEMA_FILE_DIR@
|
|
|
|
schema_DATA = gnome-shell.schemas
|
|
|
|
|
|
|
|
install-data-local:
|
2009-07-17 13:08:32 -04:00
|
|
|
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schema_DATA)
|
2009-04-23 10:46:36 -04:00
|
|
|
|
2009-08-07 13:10:39 -04:00
|
|
|
EXTRA_DIST = \
|
|
|
|
gnome-shell.desktop.in.in \
|
2009-05-03 20:57:45 -04:00
|
|
|
$(schema_DATA)
|
2009-08-07 13:10:39 -04:00
|
|
|
|
|
|
|
CLEANFILES = \
|
2009-08-10 17:47:52 -04:00
|
|
|
gnome-shell.desktop.in \
|
2009-08-07 13:10:39 -04:00
|
|
|
$(desktop_DATA)
|
|
|
|
|