1# $FreeBSD$
2
3SYSDIR?=${SRCTOP}/sys
4.include "${SYSDIR}/conf/kern.opts.mk"
5
6# Modules that include binary-only blobs of microcode should be selectable by
7# MK_SOURCELESS_UCODE option (see below).
8
9SUBDIR = \
10	drm \
11	mach64 \
12	${_mga} \
13	${_r128} \
14	savage \
15	sis \
16	tdfx \
17	via
18
19.if ${MK_SOURCELESS_UCODE} != "no"
20_mga=		mga
21_r128=		r128
22.endif
23
24.include <bsd.subdir.mk>
25