]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/drm/Makefile
Import mandoc 1.4.1rc2
[FreeBSD/FreeBSD.git] / sys / modules / drm / Makefile
1 # $FreeBSD$
2
3 SYSDIR?=${.CURDIR}/../..
4 .include "${SYSDIR}/conf/kern.opts.mk"
5
6 # Modules that include binary-only blobs of microcode should be selectable by
7 # MK_SOURCELESS_UCODE option (see below).
8
9 SUBDIR = \
10         drm \
11         i915 \
12         mach64 \
13         ${_mga} \
14         ${_r128} \
15         ${_radeon} \
16         savage \
17         sis \
18         tdfx \
19         via
20
21 .if ${MK_SOURCELESS_UCODE} != "no"
22 _mga=           mga
23 _r128=          r128
24 .if ${MACHINE_CPUARCH} != "powerpc"
25 _radeon=        radeon
26 .endif
27 .endif
28
29 .include <bsd.subdir.mk>