mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-26 05:34:23 +08:00
21 lines
513 B
Makefile
21 lines
513 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
pcmciadir = $(sysconfdir)/pcmcia
|
|
|
|
EXTRA_DIST = bluetooth bluetooth.conf
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
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)
|
|
|
|
uninstall-local:
|
|
@rm -f $(DESTDIR)$(pcmciadir)/bluetooth
|
|
@rm -f $(DESTDIR)$(pcmciadir)/bluetooth.conf
|