blob: 3f683a5b1d9d0dd9f0c4e2e73ba2051332c45292 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# $OpenBSD: Makefile,v 1.7 2012/12/04 14:06:32 mpi Exp $
LIB= swrastg_dri.so
CPPFLAGS= \
-I${GALLIUM}/include \
-I${GALLIUM}/auxiliary \
-I${GALLIUM}/drivers \
-I${GALLIUM}/winsys/sw/dri \
-I${GALLIUM}/state_trackers/dri/common \
-DHAVE_POSIX_MEMALIGN
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
WINSYS_SOURCES = \
dri_sw_winsys.c
DRISW_SOURCES = \
dri_context.c \
dri_screen.c \
dri_drawable.c \
drisw.c
SWRAST_COMMON_SOURCES = \
utils.c \
drisw_util.c \
xmlconfig.c
DRIVER_SOURCES = \
swrast_drm_api.c
SRCS = \
${WINSYS_SOURCES} \
${DRISW_SOURCES} \
${SWRAST_COMMON_SOURCES} \
${DRIVER_SOURCES}
LDADD= ../../mesa/libmesagallium/libmesagallium_pic.a \
../../glsl/libglsl/libglsl_pic.a \
${DRIVER_LIBS} \
../../gallium/libgallium/libgallium_pic.a \
-L${X11BASE}/lib -lexpat -lm -lstdc++ -lc
DPADD= ../../mesa/libmesagallium/libmesagallium_pic.a
.include "../../gallium/Makefile.inc"
.include <bsd.xorg.mk>
.PATH: ${GALLIUM}/state_trackers/dri/common
.PATH: ${GALLIUM}/state_trackers/dri/sw
.PATH: ${GALLIUM}/targets/dri-swrast
.PATH: ${GALLIUM}/winsys/sw/dri
|