blob: 3bde357ca67a2c865920174afe82c3a3c719bcc2 (
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
|
# $OpenBSD: Makefile,v 1.3 2010/05/22 20:14:15 matthieu Exp $
LIB= swrast_dri.so
.if ${MACHINE_ARCH} == "sparc"
PICFLAG = -fPIC
.endif
SWRAST_COMMON_SOURCES = \
driverfuncs.c \
utils.c
DRIVER_SOURCES = \
swrast.c \
swrast_span.c
SRCS = \
$(SWRAST_COMMON_SOURCES) \
$(DRIVER_SOURCES)
.include <bsd.xorg.mk>
.PATH: $(MESA)/drivers/dri/swrast
|