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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
XCOMM $XFree86: xc/programs/Xserver/GL/mesa/src/X/Imakefile,v 1.8 2000/08/01 20:28:40 dawes Exp $
#define IHaveModules
#include <Server.tmpl>
LinkSourceFile(t_array_api.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_array_api.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_array_import.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_array_import.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_context.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_context.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_eval_api.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_eval_api.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_alloc.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_alloc.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_api.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_api.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_debug.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_debug.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_dlist.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_dlist.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_elt.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_elt.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_eval.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_eval.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_exec.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_exec.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_fixup.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_imm_fixup.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_pipeline.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_pipeline.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_cliptmp.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_fog.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_light.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_lighttmp.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_normals.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_points.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_render.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_rendertmp.h, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_texgen.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_texmat.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(t_vb_vertex.c, $(MESASRCDIR)/src/tnl)
LinkSourceFile(tnl.h, $(MESASRCDIR)/src/tnl)
SRCS = t_array_api.c \
t_array_import.c \
t_context.c \
t_eval_api.c \
t_imm_alloc.c \
t_imm_api.c \
t_imm_debug.c \
t_imm_dlist.c \
t_imm_elt.c \
t_imm_eval.c \
t_imm_exec.c \
t_imm_fixup.c \
t_pipeline.c \
t_vb_fog.c \
t_vb_light.c \
t_vb_normals.c \
t_vb_points.c \
t_vb_render.c \
t_vb_texgen.c \
t_vb_texmat.c \
t_vb_vertex.c
OBJS = t_array_api.o \
t_array_import.o \
t_context.o \
t_eval_api.o \
t_imm_alloc.o \
t_imm_api.o \
t_imm_debug.o \
t_imm_dlist.o \
t_imm_elt.o \
t_imm_eval.o \
t_imm_exec.o \
t_imm_fixup.o \
t_pipeline.o \
t_vb_fog.o \
t_vb_light.o \
t_vb_normals.o \
t_vb_points.o \
t_vb_render.o \
t_vb_texgen.o \
t_vb_texmat.o \
t_vb_vertex.o
INCLUDES = -I$(MESASRCDIR)/src \
-I$(MESASRCDIR)/src/array_cache \
-I$(MESASRCDIR)/src/math \
-I$(MESASRCDIR)/include \
-I$(SERVERSRC)/include -I$(XINCLUDESRC) \
-I../../../include -I../../../glx \
-I$(LIBSRC)/GL/include \
-I$(XF86SRC) -I$(XTOP)/include
DEFINES = $(GLX_DEFINES) /*-DUSE_X86_ASM*/ /*-DUSE_SPARC_ASM*/
#if DoLoadableServer
ModuleObjectRule()
#else
NormalLibraryObjectRule()
#endif
SubdirLibraryRule($(OBJS))
LintLibraryTarget(dri,$(SRCS))
NormalLintTarget($(SRCS))
DependTarget()
|