freebsd-dev/sys/modules/drm2/Makefile

28 lines
489 B
Makefile
Raw Normal View History

# $FreeBSD$
SYSDIR?=${SRCTOP}/sys
.include "${SYSDIR}/conf/kern.opts.mk"
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
_i915kms= i915kms
2013-08-26 09:17:21 +00:00
_radeonkms= radeonkms
. if ${MK_SOURCELESS_UCODE} != "no"
_radeonkmsfw= radeonkmsfw
2013-08-26 09:17:21 +00:00
. endif
.endif
.if ${MACHINE_CPUARCH} == "powerpc"
_radeonkms= radeonkms
. if ${MK_SOURCELESS_UCODE} != "no"
_radeonkmsfw= radeonkmsfw
. endif
.endif
SUBDIR = \
drm2 \
${_i915kms} \
2013-08-26 09:17:21 +00:00
${_radeonkms} \
${_radeonkmsfw}
.include <bsd.subdir.mk>