xref: /dragonfly/sys/dev/Makefile (revision 0085a56d)
1.include "../platform/${MACHINE_PLATFORM}/Makefile.inc"
2
3SUBDIR=	\
4	acpica \
5	agp \
6	crypto \
7	disk \
8	drm \
9	misc \
10	netif \
11	pccard \
12	powermng \
13	raid \
14	sound \
15	smbus \
16	video \
17	virtual
18
19# empty to allow concurrent building
20SUBDIR_ORDERED=
21
22.for dir in ${SUBDIR}
23.if empty(DEV_SUPPORT:M${dir}) && empty(DEV_SUPPORT:M${dir}/*)
24SUBDIR:= ${SUBDIR:N${dir}}
25.endif
26.endfor
27
28.include <bsd.subdir.mk>
29