mesa: add a new test for glDrawPixels(GL_DEPTH_COMPONENT)
[mesa.git] / progs / tests / Makefile
index 5f5453b86a681f1b898300353a7220ac55b138e6..e04b95ce08572b597bc79cf9a624ed8f0ab20975 100644 (file)
@@ -18,24 +18,29 @@ SOURCES = \
        arbfptexture.c \
        arbfptrig.c \
        arbnpot.c \
+       arbnpot-mipmap.c \
        arbvptest1.c \
        arbvptest3.c \
        arbvptorus.c \
        arbvpwarpmesh.c \
+       arraytexture.c \
        blendminmax.c \
        blendsquare.c \
        bufferobj.c \
        bug_3050.c \
        bug_3101.c \
        bug_3195.c \
+       calibrate_rast.c \
        copypixrate.c \
        crossbar.c \
        cva.c \
        dinoshade.c \
+       drawbuffers.c \
        floattex.c \
        fbotest1.c \
        fbotest2.c \
        fbotexture.c \
+       fillrate.c \
        fog.c \
        fogcoord.c \
        fptest1.c \
@@ -45,17 +50,22 @@ SOURCES = \
        invert.c \
        jkrahntest.c \
        manytex.c \
+       minmag.c \
        mipmap_limits.c \
+       mipmap_view.c \
        multipal.c \
        no_s3tc.c \
        packedpixels.c \
        pbo.c \
+       prog_parameter.c \
        projtex.c \
+       random.c \
        readrate.c \
        seccolor.c \
        sharedtex.c \
        stencilwrap.c \
        stencil_wrap.c \
+       subtex \
        subtexrate.c \
        tex1d.c \
        texcompress2.c \
@@ -74,6 +84,7 @@ SOURCES = \
        vpwarpmesh.c \
        yuvrect.c \
        yuvsquare.c \
+       zdrawpix.c \
        zreaddraw.c
 
 PROGS = $(SOURCES:%.c=%)
@@ -114,12 +125,24 @@ getprocaddress: getprocaddress.c getproclist.h
 getproclist.h: $(TOP)/src/mesa/glapi/gl_API.xml getprocaddress.c getprocaddress.py
        python getprocaddress.py > getproclist.h
 
+arraytexture: arraytexture.o readtex.o
+       $(CC) $(CFLAGS) arraytexture.o readtex.o $(LIBS) -o $@
+
+arraytexture.o: arraytexture.c readtex.h
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
 afsmultiarb: afsmultiarb.o readtex.o
        $(CC) $(CFLAGS) afsmultiarb.o readtex.o $(LIBS) -o $@
 
 afsmultiarb.o: afsmultiarb.c readtex.h
        $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
 
+drawbuffers: drawbuffers.o
+       $(CC) $(CFLAGS) drawbuffers.o $(LIBS) -o $@
+
+drawbuffers.o: drawbuffers.c extfuncs.h
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
 texrect: texrect.o readtex.o
        $(CC) $(CFLAGS) texrect.o readtex.o $(LIBS) -o $@
 
@@ -138,6 +161,21 @@ invert: invert.o readtex.o
 invert.o: invert.c readtex.h
        $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
 
+mipmap_view: mipmap_view.o readtex.o
+       $(CC) $(CFLAGS) mipmap_view.o readtex.o $(LIBS) -o $@
+
+mipmap_view.o: mipmap_view.c readtex.h
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
+
+fillrate: fillrate.o readtex.o
+       $(CC) $(CFLAGS) fillrate.o readtex.o $(LIBS) -o $@
+
+fillrate.o: fillrate.c readtex.h
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
+
+
 readtex.o: readtex.c
        $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
 
@@ -148,6 +186,8 @@ readtex.h: $(TOP)/progs/util/readtex.h
 readtex.c: $(TOP)/progs/util/readtex.c
        ln -s $(TOP)/progs/util/readtex.c .
 
+extfuncs.h: $(TOP)/progs/util/extfuncs.h
+       ln -s $(TOP)/progs/util/extfuncs.h .