ath3kfw, bcmfw, bthidcontrol, bthidd all require usb(4); build them

conditionally if MK_USB != no

MFC after: 1 week
This commit is contained in:
Enji Cooper 2015-04-27 06:34:51 +00:00
parent fdf6290ea9
commit d7f46fbd10
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=282054

View file

@ -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>