blob: fc726a7e7c9d0980da9cf6b638fc75fd4c02ce5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# the indicator bus file
indicatorsdir = $(prefix)/share/unity/indicators
dist_indicators_DATA = com.canonical.indicator.bluetooth
# the dbus service file
dbus_servicesdir = $(datadir)/dbus-1/services
dbus_services_DATA = indicator-bluetooth.service
%.service: %.service.in
sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@
gsettings_SCHEMAS = com.canonical.indicator.bluetooth.gschema.xml
@INTLTOOL_XML_NOMERGE_RULE@
@GSETTINGS_RULES@
EXTRA_DIST = \
indicator-bluetooth.service.in \
com.canonical.indicator.bluetooth.gschema.xml.in
CLEANFILES = \
$(dbus_services_DATA) \
$(gsettings_SCHEMAS)
|