blob: 03be3468da9e6463eb5b9ba1f03f144d83e6d289 (
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
|
# src/mesa/drivers/dri/r128/Makefile
TOP = ../../../../..
include $(TOP)/configs/current
LIBNAME = savage_dri.so
include ../Makefile.defines
DRIVER_SOURCES = \
savage_xmesa.c \
savagedd.c \
savagestate.c \
savagetex.c \
savagetris.c \
savagerender.c \
savageioctl.c \
savagespan.c
C_SOURCES = \
$(COMMON_SOURCES) \
$(DRIVER_SOURCES)
ASM_SOURCES =
include ../Makefile.targets
|