c6063d0da8
from the latter.
27 lines
370 B
Makefile
27 lines
370 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.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
|
|
_radeon= radeon
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|