blob: fc9beeeca83e4c19e3cf8e2df415231d3274c334 (
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 = $(datadir)/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)
|