blob: 220984463f0e9375c6a5e5059dcd58decfe8ab6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# $Id$
#
pcmciadir = $(sysconfdir)/pcmcia
EXTRA_DIST = bluetooth bluetooth.conf
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(pcmciadir)
[ -f $(DESTDIR)$(pcmciadir)/bluetooth ] || \
$(INSTALL_DATA) $(srcdir)/bluetooth $(DESTDIR)$(pcmciadir)
[ -f $(DESTDIR)$(pcmciadir)/bluetooth.conf ] || \
$(INSTALL_DATA) $(srcdir)/bluetooth.conf $(DESTDIR)$(pcmciadir)
|