2014-02-17 11:19:18 -05:00
|
|
|
CLEANFILES =
|
|
|
|
|
2009-08-07 13:10:39 -04:00
|
|
|
desktopdir=$(datadir)/applications
|
2014-04-09 18:20:56 -04:00
|
|
|
desktop_DATA = gnome-shell.desktop gnome-shell-wayland.desktop gnome-shell-extension-prefs.desktop
|
2009-08-07 13:10:39 -04:00
|
|
|
|
2014-02-17 11:19:18 -05:00
|
|
|
if HAVE_NETWORKMANAGER
|
|
|
|
desktop_DATA += org.gnome.Shell.PortalHelper.desktop
|
|
|
|
|
|
|
|
servicedir = $(datadir)/dbus-1/services
|
|
|
|
service_DATA = org.gnome.Shell.PortalHelper.service
|
|
|
|
|
|
|
|
CLEANFILES += \
|
|
|
|
org.gnome.Shell.PortalHelper.service \
|
|
|
|
org.gnome.Shell.PortalHelper.desktop
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
%.service: %.service.in
|
|
|
|
$(AM_V_GEN) sed -e "s|@libexecdir[@]|$(libexecdir)|" \
|
|
|
|
$< > $@ || rm $@
|
|
|
|
|
2009-08-07 13:10:39 -04:00
|
|
|
# We substitute in bindir so it works as an autostart
|
|
|
|
# file when built in a non-system prefix
|
2010-02-25 19:03:06 -05:00
|
|
|
%.desktop.in:%.desktop.in.in
|
2009-08-07 13:10:39 -04:00
|
|
|
$(AM_V_GEN) sed -e "s|@bindir[@]|$(bindir)|" \
|
|
|
|
-e "s|@VERSION[@]|$(VERSION)|" \
|
|
|
|
$< > $@ || rm $@
|
|
|
|
|
2012-06-11 15:13:23 -04:00
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
2009-08-07 13:10:39 -04:00
|
|
|
|
2011-11-16 18:11:05 -05:00
|
|
|
introspectiondir = $(datadir)/dbus-1/interfaces
|
2012-12-05 12:59:24 -05:00
|
|
|
introspection_DATA = \
|
2013-05-06 12:50:31 -04:00
|
|
|
org.gnome.Shell.Screencast.xml \
|
2013-01-14 20:44:08 -05:00
|
|
|
org.gnome.Shell.Screenshot.xml \
|
2012-12-05 12:59:24 -05:00
|
|
|
org.gnome.ShellSearchProvider.xml \
|
|
|
|
org.gnome.ShellSearchProvider2.xml
|
2011-11-16 18:11:05 -05:00
|
|
|
|
2015-02-20 13:42:07 -05:00
|
|
|
theme_sources = \
|
|
|
|
theme/HACKING \
|
|
|
|
theme/gnome-shell-high-contrast.scss \
|
|
|
|
theme/gnome-shell.scss \
|
|
|
|
theme/gnome-shell-sass/COPYING \
|
|
|
|
theme/gnome-shell-sass/HACKING \
|
|
|
|
theme/gnome-shell-sass/NEWS \
|
|
|
|
theme/gnome-shell-sass/README \
|
|
|
|
theme/gnome-shell-sass/_colors.scss \
|
|
|
|
theme/gnome-shell-sass/_common.scss \
|
|
|
|
theme/gnome-shell-sass/_drawing.scss \
|
|
|
|
theme/gnome-shell-sass/_high-contrast-colors.scss \
|
|
|
|
theme/gnome-shell-sass/gnome-shell-sass.doap
|
|
|
|
|
2014-09-18 22:24:46 -04:00
|
|
|
resource_files = $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/theme --generate-dependencies $(srcdir)/gnome-shell-theme.gresource.xml)
|
|
|
|
gnome-shell-theme.gresource: gnome-shell-theme.gresource.xml $(resource_files)
|
|
|
|
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/theme $<
|
|
|
|
resourcedir = $(pkgdatadir)
|
|
|
|
resource_DATA = gnome-shell-theme.gresource
|
2010-01-21 21:33:48 -05:00
|
|
|
|
2014-08-11 08:35:52 -04:00
|
|
|
backgrounddir = $(pkgdatadir)
|
|
|
|
background_DATA = perf-background.xml
|
|
|
|
|
|
|
|
perf-background.xml: perf-background.xml.in
|
|
|
|
$(AM_V_GEN) sed -e "s|@datadir[@]|$(datadir)|" \
|
|
|
|
$< > $@ || rm $@
|
|
|
|
|
2011-10-20 16:28:59 -04:00
|
|
|
keysdir = @GNOME_KEYBINDINGS_KEYSDIR@
|
2013-08-14 22:08:15 -04:00
|
|
|
keys_in_files = 50-gnome-shell-system.xml.in
|
2011-10-20 16:28:59 -04:00
|
|
|
keys_DATA = $(keys_in_files:.xml.in=.xml)
|
|
|
|
|
2012-04-26 09:08:27 -04:00
|
|
|
gsettings_SCHEMAS = org.gnome.shell.gschema.xml
|
2010-06-19 09:43:39 -04:00
|
|
|
|
2010-05-05 17:05:42 -04:00
|
|
|
@INTLTOOL_XML_NOMERGE_RULE@
|
2012-06-05 10:58:25 -04:00
|
|
|
|
|
|
|
%.gschema.xml.in: %.gschema.xml.in.in Makefile
|
|
|
|
$(AM_V_GEN) sed -e 's|@GETTEXT_PACKAGE[@]|$(GETTEXT_PACKAGE)|g' \
|
|
|
|
$< > $@ || rm $@
|
|
|
|
|
2010-05-05 17:05:42 -04:00
|
|
|
@GSETTINGS_RULES@
|
2009-09-18 16:29:28 -04:00
|
|
|
|
2010-05-05 17:05:42 -04:00
|
|
|
# We need to compile schemas at make time
|
|
|
|
# to run from source tree
|
2010-06-18 18:21:17 -04:00
|
|
|
gschemas.compiled: $(gsettings_SCHEMAS:.xml=.valid)
|
2010-06-18 17:47:36 -04:00
|
|
|
$(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --targetdir=. .
|
2010-05-05 17:05:42 -04:00
|
|
|
|
|
|
|
all-local: gschemas.compiled
|
|
|
|
|
2012-01-10 11:15:22 -05:00
|
|
|
convertdir = $(datadir)/GConf/gsettings
|
|
|
|
convert_DATA = gnome-shell-overrides.convert
|
2010-05-05 17:05:42 -04:00
|
|
|
|
2010-02-25 19:03:06 -05:00
|
|
|
EXTRA_DIST = \
|
|
|
|
gnome-shell.desktop.in.in \
|
2013-09-13 09:11:04 -04:00
|
|
|
gnome-shell-wayland.desktop.in.in \
|
2012-02-07 18:31:05 -05:00
|
|
|
gnome-shell-extension-prefs.desktop.in.in \
|
2011-11-16 18:11:05 -05:00
|
|
|
$(introspection_DATA) \
|
2010-06-04 18:01:32 -04:00
|
|
|
$(menu_DATA) \
|
2012-01-10 11:15:22 -05:00
|
|
|
$(convert_DATA) \
|
2011-10-20 16:28:59 -04:00
|
|
|
$(keys_in_files) \
|
2015-02-20 13:42:07 -05:00
|
|
|
$(theme_sources) \
|
2014-08-11 08:35:52 -04:00
|
|
|
perf-background.xml.in \
|
2014-02-17 11:19:18 -05:00
|
|
|
org.gnome.Shell.PortalHelper.desktop.in \
|
|
|
|
org.gnome.Shell.PortalHelper.service.in \
|
2014-09-18 22:24:46 -04:00
|
|
|
org.gnome.shell.gschema.xml.in.in \
|
|
|
|
gnome-shell-theme.gresource.xml \
|
|
|
|
$(resource_files)
|
2009-08-07 13:10:39 -04:00
|
|
|
|
2014-02-17 11:19:18 -05:00
|
|
|
CLEANFILES += \
|
2010-02-25 19:03:06 -05:00
|
|
|
gnome-shell.desktop.in \
|
2013-09-13 09:11:04 -04:00
|
|
|
gnome-shell-wayland.desktop.in \
|
2012-01-18 21:21:56 -05:00
|
|
|
gnome-shell-extension-prefs.in \
|
2010-05-05 17:05:42 -04:00
|
|
|
$(desktop_DATA) \
|
2011-10-20 16:28:59 -04:00
|
|
|
$(keys_DATA) \
|
2010-05-05 17:05:42 -04:00
|
|
|
$(gsettings_SCHEMAS) \
|
2014-08-11 08:35:52 -04:00
|
|
|
perf-background.xml \
|
2012-06-05 10:58:25 -04:00
|
|
|
gschemas.compiled \
|
|
|
|
org.gnome.shell.gschema.valid \
|
2014-09-18 22:24:46 -04:00
|
|
|
org.gnome.shell.gschema.xml.in \
|
|
|
|
gnome-shell-theme.gresource
|