freebsd-dev/sys/modules/drm/Makefile
Justin Hibbits 031a27e354 The radeon DRI module doesn't really work correctly on powerpc, so don't build
it.  Hopefully we'll get radeonkms eventually.

Discussed with:	nwhitehorn
MFC after:	2 weeks
2015-01-03 22:36:18 +00:00

30 lines
454 B
Makefile

# $FreeBSD$
SYSDIR?=${.CURDIR}/../..
.include "${SYSDIR}/conf/kern.opts.mk"
# Modules that include binary-only blobs of microcode should be selectable by
# MK_SOURCELESS_UCODE option (see below).
SUBDIR = \
drm \
i915 \
mach64 \
${_mga} \
${_r128} \
${_radeon} \
savage \
sis \
tdfx \
via
.if ${MK_SOURCELESS_UCODE} != "no"
_mga= mga
_r128= r128
.if ${MACHINE_CPUARCH} != "powerpc"
_radeon= radeon
.endif
.endif
.include <bsd.subdir.mk>