1# $FreeBSD: stable/11/sys/modules/drm/Makefile 319182 2017-05-30 04:11:12Z ngie $
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	i915 \
12	mach64 \
13	${_mga} \
14	${_r128} \
15	${_radeon} \
16	savage \
17	sis \
18	tdfx \
19	via
20
21.if ${MK_SOURCELESS_UCODE} != "no"
22_mga=		mga
23_r128=		r128
24.if ${MACHINE_CPUARCH} != "powerpc"
25_radeon=	radeon
26.endif
27.endif
28
29.include <bsd.subdir.mk>
30