~ubuntu-branches/ubuntu/wily/bluez/wily

« back to all changes in this revision

Viewing changes to scripts/Makefile.am

ImportĀ upstreamĀ versionĀ 4.81

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
if PCMCIARULES
3
 
rulesdir = $(sysconfdir)/udev
4
 
 
5
 
rules_DATA = bluetooth.rules
6
 
 
7
 
udevdir = $(libexecdir)/udev
8
 
 
9
 
udev_SCRIPTS = bluetooth_serial
10
 
endif
11
 
 
12
 
EXTRA_DIST = bluetooth.rules bluetooth_serial bluetooth.init bluetooth.default
13
 
 
14
 
MAINTAINERCLEANFILES = Makefile.in
15
 
 
16
 
if INITSCRIPTS
17
 
install-data-local:
18
 
        $(INSTALL) -D -m 755 $(srcdir)/bluetooth.init $(DESTDIR)$(sysconfdir)/init.d/bluetooth
19
 
        $(mkinstalldirs) $(DESTDIR)$(sysconfdir)/default
20
 
        [ -f $(DESTDIR)$(sysconfdir)/default/bluetooth ] || \
21
 
                $(INSTALL_DATA) $(srcdir)/bluetooth.default $(DESTDIR)$(sysconfdir)/default/bluetooth
22
 
 
23
 
uninstall-local:
24
 
        @rm -f $(DESTDIR)$(sysconfdir)/init.d/bluetooth
25
 
        @rm -f $(DESTDIR)$(sysconfdir)/default/bluetooth
26
 
endif