blob: 509fa28b68b112b015cb3b3816889d29d0e17a9f (
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
|
# src/mesa/drivers/dri/swrast/Makefile
TOP = ../../../../..
include $(TOP)/configs/current
LIBNAME = swrast_dri.so
include ../Makefile.defines
DRIVER_DEFINES = -D__NOT_HAVE_DRM_H
DRIVER_SOURCES = \
swrast.c \
swrast_span.c
C_SOURCES = \
$(SWRAST_COMMON_SOURCES) \
$(DRIVER_SOURCES)
ASM_SOURCES =
SWRAST_COMMON_SOURCES = \
../common/utils.c \
../common/drisw_util.c
include ../Makefile.targets
|