1306dede7f203019dfd75fbe1563f4f1082c6a15
[mesa.git] / src / mesa / drivers / dri / r300 / Makefile
1 # src/mesa/drivers/dri/r300/Makefile
2
3 TOP = ../../../../..
4 include $(TOP)/configs/current
5
6 LIBNAME = r300_dri.so
7 DEFINES += -DCOMPILE_R300
8
9 MINIGLX_SOURCES = server/radeon_dri.c
10
11 COMMON_SOURCES = \
12 ../../common/driverfuncs.c \
13 ../common/mm.c \
14 ../common/utils.c \
15 ../common/texmem.c \
16 ../common/vblank.c \
17 ../common/xmlconfig.c \
18 ../common/dri_util.c \
19 ../common/glcontextmodes.c
20
21 DRIVER_SOURCES = \
22 radeon_screen.c \
23 radeon_context.c \
24 radeon_ioctl.c \
25 radeon_lock.c \
26 radeon_span.c \
27 radeon_state.c \
28 \
29 r300_context.c \
30 r300_ioctl.c \
31 r300_cmdbuf.c \
32 r300_state.c \
33 r300_render.c \
34 \
35 r200_context.c \
36 r200_ioctl.c \
37 r200_state.c \
38 r200_state_init.c \
39 r200_cmdbuf.c \
40 r200_pixel.c \
41 r200_tex.c \
42 r200_texmem.c \
43 r200_texstate.c \
44 r200_tcl.c \
45 r200_swtcl.c \
46 r200_maos.c \
47 r200_sanity.c \
48 r200_vtxfmt.c \
49 r200_vtxfmt_c.c \
50 r200_vtxfmt_sse.c \
51 r200_vtxfmt_x86.c
52
53 C_SOURCES = $(COMMON_SOURCES) $(DRIVER_SOURCES)
54
55 X86_SOURCES = r200_vtxtmp_x86.S
56
57 SYMLINKS = \
58 server/radeon_dri.c \
59 server/radeon_dri.h \
60 server/radeon.h \
61 server/radeon_macros.h \
62 server/radeon_reg.h
63
64 ##### TARGETS #####
65
66
67 include ../Makefile.template
68
69 $(SYMLINKS):
70 mkdir -p server
71 for i in $(SYMLINKS) ; do rm -f $$i && test -f ../radeon/$$i && ln -s ../../radeon/$$i $$i ; done
72
73 symlinks: $(SYMLINKS)
74