blob: 62414dbd978ad80085ab9fdbfb04602e7203c911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $FreeBSD$
.include <bsd.own.mk>
.if ${MACHINE_CPUARCH} == "amd64"
_radeonkms= radeonkms
. if ${MK_SOURCELESS_UCODE} != "no"
_radeonkmsfw= radeonkmsfw
. endif
.endif
.if ${MACHINE_CPUARCH} == "i386"
. if ${MACHINE} != "pc98"
_radeonkms= radeonkms
. if ${MK_SOURCELESS_UCODE} != "no"
_radeonkmsfw= radeonkmsfw
. endif
. endif
.endif
SUBDIR = \
drm2 \
i915kms \
${_radeonkms} \
${_radeonkmsfw}
.include <bsd.subdir.mk>
|