summaryrefslogtreecommitdiff
path: root/usr.bin/bluetooth
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-11-25 14:29:10 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-11-25 14:29:10 +0000
commit3e11bd9e2a2b1cbd4283c87c93e3cc75e3f2dacb (patch)
treeddfef911600b923ca0abdbed4461a288b9249837 /usr.bin/bluetooth
parent30fca3b0cc92ae380073c169d34b4cc3f27321e9 (diff)
downloadsrc-test-3e11bd9e2a2b1cbd4283c87c93e3cc75e3f2dacb.tar.gz
src-test-3e11bd9e2a2b1cbd4283c87c93e3cc75e3f2dacb.zip
Convert to usr.bin/ to LIBADD
Reduce overlinking
Notes
Notes: svn path=/head/; revision=275042
Diffstat (limited to 'usr.bin/bluetooth')
-rw-r--r--usr.bin/bluetooth/bthost/Makefile3
-rw-r--r--usr.bin/bluetooth/btsockstat/Makefile3
-rw-r--r--usr.bin/bluetooth/rfcomm_sppd/Makefile3
3 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/bluetooth/bthost/Makefile b/usr.bin/bluetooth/bthost/Makefile
index 833d107213929..13b1d90d991c7 100644
--- a/usr.bin/bluetooth/bthost/Makefile
+++ b/usr.bin/bluetooth/bthost/Makefile
@@ -3,7 +3,6 @@
PROG= bthost
-DPADD= ${LIBBLUETOOTH}
-LDADD= -lbluetooth
+LIBADD= bluetooth
.include <bsd.prog.mk>
diff --git a/usr.bin/bluetooth/btsockstat/Makefile b/usr.bin/bluetooth/btsockstat/Makefile
index cdec9f7013c6a..36ef850fc6d88 100644
--- a/usr.bin/bluetooth/btsockstat/Makefile
+++ b/usr.bin/bluetooth/btsockstat/Makefile
@@ -6,7 +6,6 @@ WARNS?= 2
BINGRP= kmem
BINMODE= 2555
-DPADD= ${LIBBLUETOOTH} ${LIBKVM}
-LDADD= -lbluetooth -lkvm
+LIBADD= bluetooth kvm
.include <bsd.prog.mk>
diff --git a/usr.bin/bluetooth/rfcomm_sppd/Makefile b/usr.bin/bluetooth/rfcomm_sppd/Makefile
index 0da74981bc08b..b17c5cfe4f372 100644
--- a/usr.bin/bluetooth/rfcomm_sppd/Makefile
+++ b/usr.bin/bluetooth/rfcomm_sppd/Makefile
@@ -5,7 +5,6 @@ PROG= rfcomm_sppd
SRCS= rfcomm_sppd.c rfcomm_sdp.c
WARNS?= 2
-DPADD= ${LIBBLUETOOTH} ${LIBSDP}
-LDADD= -lbluetooth -lsdp -lutil
+LIBADD= bluetooth sdp util
.include <bsd.prog.mk>