blob: 45dde016fc9badd82698062dba397d8c70c81e20 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# $OpenBSD: Makefile,v 1.3 2012/08/21 10:34:07 mpi Exp $
LIB= swrast_dri.so
GALLIUM= ${.CURDIR}/../../../../dist/Mesa/src/gallium
CPPFLAGS= \
-I${GALLIUM}/include \
-I${GALLIUM}/auxiliary \
-I${GALLIUM}/drivers \
-I${GALLIUM}/winsys/sw/dri
DRIVER_LIBS= \
../../gallium/drivers/trace/libtrace_pic.a \
../../gallium/drivers/rbug/librbug_pic.a \
../../gallium/drivers/softpipe/libsoftpipe_pic.a
.ifdef XENOCARA_HAVE_LLVM
DRIVER_LIBS+= ../../gallium/drivers/llvmpipe/libllvmpipe_pic.a
.endif
DRIVER_DEFINES = \
-D__NOT_HAVE_DRM_H \
-DGALLIUM_SOFTPIPE \
-DGALLIUM_RBUG \
-DGALLIUM_TRACE
SWRAST_COMMON_SOURCES = \
utils.c \
drisw_util.c \
xmlconfig.c
DRIVER_SOURCES = \
swrast_drm_api.c
SRCS = \
${SWRAST_COMMON_SOURCES} \
${DRIVER_SOURCES}
LDADD= ../../gallium/libmesagallium/libmesagallium_pic.a \
../../glsl/libglsl/libglsl_pic.a \
${DRIVER_LIBS} \
../../gallium/libgallium/libgallium_pic.a \
-L${X11BASE}/lib -lexpat -lm -lstdc++ -lc -lpthread
DPADD= ../../gallium/libmesagallium/libmesagallium_pic.a
.include "../../gallium/Makefile.inc"
.include <bsd.xorg.mk>
.PATH: ${GALLIUM}/targets/dri-swrast
|