Add built programs to .cvsignore.
[mesa.git] / progs / tests / Makefile
index 872fa0f62146f457690d214b58243d36cadfe2e2..03bb6c2ad508d4e310e30b3b167e7bfc6cfdee18 100644 (file)
@@ -22,13 +22,20 @@ SOURCES = antialias.c \
        blendminmax.c \
        blendsquare.c \
        bufferobj.c \
+       bug_3101.c \
+       bug_3195.c \
+       crossbar.c \
        cva.c \
        dinoshade.c \
        floattex.c \
+       fbotest1.c \
+       fbotexture.c \
+       fog.c \
        fogcoord.c \
        fptest1.c \
        fptexture.c \
        getprocaddress.c \
+       invert.c \
        manytex.c \
        multipal.c \
        no_s3tc.c \
@@ -38,8 +45,10 @@ SOURCES = antialias.c \
        seccolor.c \
        sharedtex.c \
        stencilwrap.c \
+       stencil_wrap.c \
        tex1d.c \
        texline.c \
+       texobjshare.c \
        texrect.c \
        texwrap.c \
        vparray.c \
@@ -90,6 +99,11 @@ getprocaddress: getprocaddress.c getproclist.h
 getproclist.h: $(TOP)/src/mesa/glapi/gl_API.xml getprocaddress.c getprocaddress.py
        python getprocaddress.py > getproclist.h
 
+afsmultiarb: afsmultiarb.o readtex.o
+       $(CC) afsmultiarb.o readtex.o $(LIBS) -o $@
+
+afsmultiarb.o: afsmultiarb.c readtex.h
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
 
 texrect: texrect.o readtex.o
        $(CC) texrect.o readtex.o $(LIBS) -o $@
@@ -97,6 +111,18 @@ texrect: texrect.o readtex.o
 texrect.o: texrect.c readtex.h
        $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
 
+bug_3195: bug_3195.o readtex.o
+       $(CC) $(CFLAGS) bug_3195.o readtex.o $(LIBS) -o $@
+
+bug_3195.o: bug_3195.c readtex.h
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
+invert: invert.o readtex.o
+       $(CC) invert.o readtex.o $(LIBS) -o $@
+
+invert.o: invert.c readtex.h
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
 readtex.o: readtex.c
        $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@