aboutsummaryrefslogtreecommitdiff
path: root/data/Makefile.am
blob: 8752076dc0b9a9493a3400d192dc3970f29108a4 (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 = 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)