diff options
author | Gareth Hughes <[email protected]> | 2001-02-03 08:41:03 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-02-03 08:41:03 +0000 |
commit | fe69cb4b9bff800b6078ea7da5ea18bab05678d8 (patch) | |
tree | 84f7fdddaae6b3c8be1f78ffdd9e3f7ccaa4958f /src/mesa/main/Makefile.X11 | |
parent | 6d689e8a69cdd89db181691f5bc21b71518398b0 (diff) |
Some more work on interal debugging, timing routines for things that
will have implementations in assembly code. To come: texture image
conversions, more of internal T&L pipeline and so on.
Diffstat (limited to 'src/mesa/main/Makefile.X11')
-rw-r--r-- | src/mesa/main/Makefile.X11 | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mesa/main/Makefile.X11 b/src/mesa/main/Makefile.X11 index 8c9146b0f27..fe571942092 100644 --- a/src/mesa/main/Makefile.X11 +++ b/src/mesa/main/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.41 2001/01/29 20:47:39 keithw Exp $ +# $Id: Makefile.X11,v 1.42 2001/02/03 08:41:03 gareth Exp $ # Mesa 3-D graphics library # Version: 3.5 @@ -112,6 +112,8 @@ CORE_SOURCES = \ X86/common_x86.c \ X86/3dnow.c \ X86/katmai.c \ + math/m_debug_norm.c \ + math/m_debug_vertex.c \ math/m_debug_xform.c \ math/m_eval.c \ math/m_matrix.c \ @@ -149,7 +151,7 @@ CORE_SOURCES = \ swrast/s_stencil.c \ swrast/s_texture.c \ swrast/s_triangle.c \ - swrast/s_zoom.c + swrast/s_zoom.c DRIVER_SOURCES = \ @@ -184,9 +186,9 @@ DRIVER_SOURCES = \ Trace/tr_write.c -ASM_SOURCES = +ASM_SOURCES = -ADDITIONAL_OBJ = +ADDITIONAL_OBJ = OBJECTS = $(ASM_SOURCES:.S=.o) \ $(CORE_SOURCES:.c=.o) \ @@ -336,7 +338,7 @@ include depend # # Run 'make dep' to update the dependencies if you change what's included # by any source file. -# +# dep: $(CORE_SOURCES) $(DRIVER_SOURCES) $(OSMESA_SOURCES) makedepend -fdepend -Y -I../include -DGGI -DSVGA -DFX $(CORE_SOURCES) $(DRIVER_SOURCES) $(OSMESA_SOURCES) |