blob: 9948ee767ac87745cfcf50495e2ec6e1a48d18c6 (
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
|
# src/mesa/drivers/dri/mga/Makefile
TOP = ../../../../..
include $(TOP)/configs/current
LIBNAME = mga_dri.so
include ../Makefile.defines
DRIVER_SOURCES = \
mgadd.c \
mgaioctl.c \
mgarender.c \
mgastate.c \
mgatris.c \
mgapixel.c \
mgaspan.c \
mgatex.c \
mgatexmem.c \
mga_texstate.c \
mga_texcombine.c \
mgavb.c \
mga_xmesa.c
C_SOURCES = \
$(COMMON_SOURCES) \
$(DRIVER_SOURCES)
ASM_SOURCES =
include ../Makefile.targets
|