blob: 63d97afb3bee6a1c496f3b3a55004e75d3ef8036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.6 2013/09/05 15:11:59 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>
|