blob: 60dd8391bbd360bc2c2a2278390da8b2f1950638 (
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
|
SUBDIRS = icons
xdg_autostartdir = /etc/xdg/autostart
xdg_autostart_DATA = ayatana-indicator-messages.desktop
%.desktop: %.desktop.in
$(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@
upstart_jobsdir = $(datadir)/upstart/sessions/
upstart_jobs_DATA = ayatana-indicator-messages.conf
%.conf: %.conf.in
$(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@
gsettings_SCHEMAS = org.ayatana.indicator.messages.gschema.xml
@GSETTINGS_RULES@
indicatordir = $(INDICATOR_DIR)
dist_indicator_DATA = org.ayatana.indicator.messages
EXTRA_DIST = \
ayatana-indicator-messages.desktop.in \
ayatana-indicator-messages.conf.in \
$(gsettings_SCHEMAS)
CLEANFILES = \
$(xdg_autostart_DATA) \
$(upstart_jobs_DATA)
|