summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2015-04-27 06:34:51 +0000
committerngie <ngie@FreeBSD.org>2015-04-27 06:34:51 +0000
commit2e18ab7ef64046bae8fd86744ee56caa38a6f759 (patch)
tree59b791bb01baa656a23dbc653e913ddce5a4e068
parent5a54b2974a3a03429dd7a3e6e7c1b82e121f0477 (diff)
downloadFreeBSD-src-2e18ab7ef64046bae8fd86744ee56caa38a6f759.zip
FreeBSD-src-2e18ab7ef64046bae8fd86744ee56caa38a6f759.tar.gz
ath3kfw, bcmfw, bthidcontrol, bthidd all require usb(4); build them
conditionally if MK_USB != no MFC after: 1 week
-rw-r--r--usr.sbin/bluetooth/Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/usr.sbin/bluetooth/Makefile b/usr.sbin/bluetooth/Makefile
index 594b440..1737107 100644
--- a/usr.sbin/bluetooth/Makefile
+++ b/usr.sbin/bluetooth/Makefile
@@ -1,12 +1,10 @@
# $Id: Makefile,v 1.5 2003/09/08 02:28:35 max Exp $
# $FreeBSD$
+.include <src.opts.mk>
+
SUBDIR= \
- ath3kfw \
- bcmfw \
bt3cfw \
- bthidcontrol \
- bthidd \
btpand \
hccontrol \
hcsecd \
@@ -17,5 +15,12 @@ SUBDIR= \
sdpcontrol \
sdpd
+.if ${MK_USB} != "no"
+SUBDIR+= ath3kfw
+SUBDIR+= bcmfw
+SUBDIR+= bthidcontrol
+SUBDIR+= bthidd
+.endif
+
.include <bsd.subdir.mk>
OpenPOWER on IntegriCloud