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 $@
|
|
|
|
|
2008-12-22 17:05:56 -05:00
|
|
|
imagedir = $(pkgdatadir)/images
|
|
|
|
|
2009-03-10 12:53:03 -04:00
|
|
|
dist_image_DATA = \
|
|
|
|
add-workspace.svg \
|
2009-09-07 10:18:50 -04:00
|
|
|
app-well-glow.png \
|
2009-09-01 19:06:20 -04:00
|
|
|
back.svg \
|
2009-08-05 08:59:57 -04:00
|
|
|
close.svg \
|
2009-08-16 10:09:34 -04:00
|
|
|
close-black.svg \
|
2009-08-05 08:59:57 -04:00
|
|
|
info.svg \
|
2009-08-09 19:48:54 -04:00
|
|
|
magnifier.svg \
|
|
|
|
remove-workspace.svg
|
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)
|
|
|
|
|