blob: 0bdb9ba5dcaa7fb7e9972a984f88f4963d864adf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.7 2013/09/05 15:27:58 jsg Exp $
.include <bsd.xconf.mk>
SUBDIR= rbug softpipe trace
.if ${XENOCARA_BUILD_GALLIUM} == "llvm"
SUBDIR+= llvmpipe radeonsi
.endif
.if ${XENOCARA_BUILD_GALLIUM:L} == "yes" || ${XENOCARA_BUILD_GALLIUM} == "llvm" && \
(${MACHINE} == i386 || ${MACHINE} == amd64 || ${MACHINE} == macppc || \
${MACHINE} == sparc64)
SUBDIR+= r300 r600
.endif
build depend all install clean cleandir: _SUBDIRUSE
.include <bsd.xorg.mk>
|