1# $FreeBSD: releng/11.0/sys/modules/drm/Makefile 276639 2015-01-03 22:36:18Z jhibbits $
2
3SYSDIR?=${.CURDIR}/../..
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