42782caf9b
This module is of no use on this platform and now, i915 depends on ACPI anyway. Suggested by: nyan@
31 lines
511 B
Makefile
31 lines
511 B
Makefile
# $FreeBSD$
|
|
|
|
SYSDIR?=${.CURDIR}/../..
|
|
.include "${SYSDIR}/conf/kern.opts.mk"
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
_i915kms= i915kms
|
|
_radeonkms= radeonkms
|
|
. if ${MK_SOURCELESS_UCODE} != "no"
|
|
_radeonkmsfw= radeonkmsfw
|
|
. endif
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
. if ${MACHINE} != "pc98"
|
|
_i915kms= i915kms
|
|
_radeonkms= radeonkms
|
|
. if ${MK_SOURCELESS_UCODE} != "no"
|
|
_radeonkmsfw= radeonkmsfw
|
|
. endif
|
|
. endif
|
|
.endif
|
|
|
|
SUBDIR = \
|
|
drm2 \
|
|
${_i915kms} \
|
|
${_radeonkms} \
|
|
${_radeonkmsfw}
|
|
|
|
.include <bsd.subdir.mk>
|