blob: 5efdeb93cd87a2763b045ae7cc3547bea271b593 (
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
28
29
30
31
32
33
34
35
36
37
|
# $OpenBSD: Makefile,v 1.18 2013/09/05 15:11:56 jsg Exp $
.include <bsd.xconf.mk>
.if ${XENOCARA_BUILD_GALLIUM} == "llvm"
SUBDIR+=swrastg radeonsi
.else
SUBDIR= swrast
.endif
.if ${MACHINE} == i386 || ${MACHINE} == amd64
SUBDIR+= i915 i965 radeon r200
.elif ${MACHINE} == macppc || ${MACHINE} == sparc64
SUBDIR+= radeon r200
.endif
.if ${XENOCARA_BUILD_GALLIUM:L} == "yes" || ${XENOCARA_BUILD_GALLIUM} == "llvm"
.if ${MACHINE} == i386 || ${MACHINE} == amd64
SUBDIR+= r300g r600g
.endif
.endif
build depend all install clean cleandir: _SUBDIRUSE
MESA_INCLUDE= ${.CURDIR}/../../../dist/Mesa/include
INCS = \
dri_interface.h
includes:
cd ${MESA_INCLUDE}/GL/internal; for i in ${INCS}; do \
j="cmp -s $$i ${DESTDIR}${INCSDIR}/GL/internal/$$i || \
${INSTALL_DATA} $$i ${DESTDIR}${INCSDIR}/GL/internal"; \
echo "\tinstalling $$i"; \
eval "$$j"; \
done
.include <bsd.xorg.mk>
|