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