List of source (.c) files in each directory.
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 11 Oct 2006 15:52:00 +0000 (15:52 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 11 Oct 2006 15:52:00 +0000 (15:52 +0000)
To be included by X.org Makefile.am files so that lists of files don't need
to be hardcoded and frequently updated there.

src/mesa/array_cache/sources [new file with mode: 0644]
src/mesa/drivers/common/sources [new file with mode: 0644]
src/mesa/drivers/x11/sources [new file with mode: 0644]
src/mesa/glapi/sources [new file with mode: 0644]
src/mesa/math/sources [new file with mode: 0644]
src/mesa/shader/grammar/sources [new file with mode: 0644]
src/mesa/shader/slang/sources [new file with mode: 0644]
src/mesa/shader/sources [new file with mode: 0644]
src/mesa/swrast/sources [new file with mode: 0644]
src/mesa/swrast_setup/sources [new file with mode: 0644]
src/mesa/tnl/sources [new file with mode: 0644]

diff --git a/src/mesa/array_cache/sources b/src/mesa/array_cache/sources
new file mode 100644 (file)
index 0000000..210ec20
--- /dev/null
@@ -0,0 +1,3 @@
+MESA_ARRAY_CACHE_SOURCES = \
+ac_context.c \
+ac_import.c
diff --git a/src/mesa/drivers/common/sources b/src/mesa/drivers/common/sources
new file mode 100644 (file)
index 0000000..90e29d7
--- /dev/null
@@ -0,0 +1,2 @@
+MESA_DRIVER_COMMON_SOURCES = \
+driverfuncs.c
diff --git a/src/mesa/drivers/x11/sources b/src/mesa/drivers/x11/sources
new file mode 100644 (file)
index 0000000..d76d65e
--- /dev/null
@@ -0,0 +1,8 @@
+# Note: only listing sources needed for X server renderer
+MESA_DRIVER_X11_SOURCES = \
+xm_api.c \
+xm_buffer.c \
+xm_dd.c \
+xm_line.c \
+xm_span.c \
+xm_tri.c
diff --git a/src/mesa/glapi/sources b/src/mesa/glapi/sources
new file mode 100644 (file)
index 0000000..384b083
--- /dev/null
@@ -0,0 +1,3 @@
+MESA_GLAPI_SOURCES = \
+glapi.c \
+glthread.c
diff --git a/src/mesa/math/sources b/src/mesa/math/sources
new file mode 100644 (file)
index 0000000..2374be8
--- /dev/null
@@ -0,0 +1,9 @@
+MESA_MATH_SOURCES = \
+m_debug_clip.c \
+m_debug_norm.c \
+m_debug_xform.c \
+m_eval.c \
+m_matrix.c \
+m_translate.c \
+m_vector.c \
+m_xform.c
diff --git a/src/mesa/shader/grammar/sources b/src/mesa/shader/grammar/sources
new file mode 100644 (file)
index 0000000..b1f8530
--- /dev/null
@@ -0,0 +1,2 @@
+MESA_SHADER_GRAMMAR_SOURCES = \
+grammar_mesa.c
diff --git a/src/mesa/shader/slang/sources b/src/mesa/shader/slang/sources
new file mode 100644 (file)
index 0000000..f03f1ed
--- /dev/null
@@ -0,0 +1,21 @@
+MESA_SHADER_SLANG_SOURCES = \
+slang_analyse.c \
+slang_assemble_assignment.c \
+slang_assemble.c \
+slang_assemble_conditional.c \
+slang_assemble_constructor.c \
+slang_assemble_typeinfo.c \
+slang_compile.c \
+slang_compile_function.c \
+slang_compile_operation.c \
+slang_compile_struct.c \
+slang_compile_variable.c \
+slang_execute.c \
+slang_execute_x86.c \
+slang_export.c \
+slang_library_texsample.c \
+slang_library_noise.c \
+slang_link.c \
+slang_preprocess.c \
+slang_storage.c \
+slang_utility.c
diff --git a/src/mesa/shader/sources b/src/mesa/shader/sources
new file mode 100644 (file)
index 0000000..1b65220
--- /dev/null
@@ -0,0 +1,13 @@
+# List of ource files in this directory used for X.org xserver build
+MESA_SHADER_SOURCES = \
+arbprogparse.c \
+arbprogram.c \
+atifragshader.c \
+nvfragparse.c \
+nvprogram.c \
+nvvertexec.c \
+nvvertparse.c \
+program.c \
+programopt.c \
+shaderobjects.c \
+3dlabs.c
diff --git a/src/mesa/swrast/sources b/src/mesa/swrast/sources
new file mode 100644 (file)
index 0000000..8807b56
--- /dev/null
@@ -0,0 +1,32 @@
+# List of ource files in this directory used for X.org xserver build
+MESA_SWRAST_SOURCES = \
+s_aaline.c \
+s_aatriangle.c \
+s_accum.c \
+s_alpha.c \
+s_arbshader.c \
+s_atifragshader.c \
+s_bitmap.c \
+s_blend.c \
+s_blit.c \
+s_buffers.c \
+s_context.c \
+s_copypix.c \
+s_depth.c \
+s_drawpix.c \
+s_feedback.c \
+s_fog.c \
+s_imaging.c \
+s_lines.c \
+s_logic.c \
+s_masking.c \
+s_nvfragprog.c \
+s_points.c \
+s_readpix.c \
+s_span.c \
+s_stencil.c \
+s_texcombine.c \
+s_texfilter.c \
+s_texstore.c \
+s_triangle.c \
+s_zoom.c
diff --git a/src/mesa/swrast_setup/sources b/src/mesa/swrast_setup/sources
new file mode 100644 (file)
index 0000000..d5b606d
--- /dev/null
@@ -0,0 +1,3 @@
+MESA_SWRAST_SETUP_SOURCES = \
+ss_context.c \
+ss_triangle.c
diff --git a/src/mesa/tnl/sources b/src/mesa/tnl/sources
new file mode 100644 (file)
index 0000000..2c4f4c4
--- /dev/null
@@ -0,0 +1,31 @@
+# List of ource files in this directory used for X.org xserver build
+MESA_TNL_SOURCES = \
+t_array_api.c \
+t_array_import.c \
+t_context.c \
+t_pipeline.c \
+t_save_api.c \
+t_save_loopback.c \
+t_save_playback.c \
+t_vb_arbprogram.c \
+t_vb_arbprogram_sse.c \
+t_vb_arbshader.c \
+t_vb_cull.c \
+t_vb_fog.c \
+t_vb_light.c \
+t_vb_normals.c \
+t_vb_points.c \
+t_vb_program.c \
+t_vb_render.c \
+t_vb_texgen.c \
+t_vb_texmat.c \
+t_vb_vertex.c \
+t_vertex.c \
+t_vertex_generic.c \
+t_vertex_sse.c \
+t_vp_build.c \
+t_vtx_api.c \
+t_vtx_eval.c \
+t_vtx_exec.c \
+t_vtx_generic.c \
+t_vtx_x86.c