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