Flush IM if very small number of verts left -- prevent copy errors
[mesa.git] / src / mesa / Makefile.X11
index 2c910418a88a70a046ba4d52b99e7da377cac933..940135f51141d55b7995da1ff0671d18a261139b 100644 (file)
@@ -1,8 +1,8 @@
-# $Id: Makefile.X11,v 1.64 2002/01/15 18:30:58 kschultz Exp $
+# $Id: Makefile.X11,v 1.72 2002/10/29 23:09:40 brianp Exp $
 
 # Mesa 3-D graphics library
-# Version:  4.1
-# Copyright (C) 1995-2001  Brian Paul
+# Version:  5.0
+# Copyright (C) 1995-2002  Brian Paul
 
 # Makefile for core library
 
@@ -10,7 +10,7 @@
 ##### MACROS #####
 
 GL_MAJOR = 1
-GL_MINOR = 3
+GL_MINOR = 4
 GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
 
 VPATH = RCS
@@ -21,9 +21,6 @@ LIBDIR = ../lib
 
 
 CORE_SOURCES = \
-       vpexec.c \
-       vpparse.c \
-       vpstate.c \
        api_arrayelt.c \
        api_loopback.c \
        api_noop.c \
@@ -34,7 +31,6 @@ CORE_SOURCES = \
        buffers.c \
        clip.c \
        colortab.c \
-       config.c \
        context.c \
        convolve.c \
        debug.c \
@@ -59,7 +55,6 @@ CORE_SOURCES = \
        light.c \
        lines.c \
        matrix.c \
-       mem.c \
        mmath.c \
        pixel.c \
        points.c \
@@ -67,6 +62,7 @@ CORE_SOURCES = \
        rastpos.c \
        state.c \
        stencil.c \
+       texcompress.c \
        texformat.c \
        teximage.c \
        texobj.c \
@@ -74,6 +70,9 @@ CORE_SOURCES = \
        texstore.c \
        texutil.c \
        varray.c \
+       vpexec.c \
+       vpparse.c \
+       vpstate.c \
        vtxfmt.c \
        X86/x86.c \
        X86/common_x86.c \
@@ -81,13 +80,11 @@ CORE_SOURCES = \
        X86/sse.c \
        math/m_debug_clip.c \
        math/m_debug_norm.c \
-       math/m_debug_vertex.c \
        math/m_debug_xform.c \
        math/m_eval.c \
        math/m_matrix.c \
        math/m_translate.c \
        math/m_vector.c \
-       math/m_vertices.c \
        math/m_xform.c \
        array_cache/ac_context.c \
        array_cache/ac_import.c \
@@ -110,11 +107,9 @@ CORE_SOURCES = \
        swrast/s_lines.c \
        swrast/s_logic.c \
        swrast/s_masking.c \
-       swrast/s_pb.c \
        swrast/s_pixeltex.c \
        swrast/s_points.c \
        swrast/s_readpix.c \
-       swrast/s_scissor.c \
        swrast/s_span.c \
        swrast/s_stencil.c \
        swrast/s_texture.c \
@@ -257,28 +252,3 @@ dep: $(CORE_SOURCES) $(DRIVER_SOURCES) $(OSMESA_SOURCES)
 
 tags:
        etags `find . -name \*.[ch]` `find ../include`
-
-
-
-# XXX temporary for NV_vertex_program
-VPFILES = \
-       include/GL/glext.h \
-       src/Makefile.X11 \
-       src/vpparse.[ch] \
-       src/vpexec.[ch] \
-       src/vpstate.[ch] \
-       src/attrib.c \
-       src/context.c \
-       src/enable.c \
-       src/extensions.c \
-       src/get.c \
-       src/matrix.c \
-       src/mtypes.h \
-       src/varray.c \
-       src/tnl/t_vb_program.c \
-       tests/vptest1.c \
-       tests/vptest2.c
-
-vptar:
-       cd .. ; tar cvf vpfiles.tar $(VPFILES) ; gzip vpfiles.tar
-