X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=progs%2Ftests%2FMakefile;h=75d1eca08ee524c16a06555d09788edf2bc639d7;hb=73c5505c13c42ba1ab95fa1d1003d5f9327428a5;hp=c1218b1ca9c4a5b982447b90dc50d44202e6819b;hpb=4ea4589302281e539d2a08437a036ca00d1ddc1f;p=mesa.git diff --git a/progs/tests/Makefile b/progs/tests/Makefile index c1218b1ca9c..75d1eca08ee 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -10,42 +10,72 @@ include $(TOP)/configs/current LIBS = $(APP_LIB_DEPS) -SOURCES = antialias.c \ +SOURCES = \ + afsmultiarb.c \ + antialias.c \ arbfpspec.c \ arbfptest1.c \ 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 \ fptexture.c \ getprocaddress.c \ + interleave.c \ 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 \ + texfilt.c \ texline.c \ texobjshare.c \ texrect.c \ texwrap.c \ + vao-01.c \ + vao-02.c \ vparray.c \ vptest1.c \ vptest2.c \ @@ -54,6 +84,8 @@ SOURCES = antialias.c \ vpwarpmesh.c \ yuvrect.c \ yuvsquare.c \ + zcomp.c \ + zdrawpix.c \ zreaddraw.c PROGS = $(SOURCES:%.c=%) @@ -94,19 +126,57 @@ 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) texrect.o readtex.o $(LIBS) -o $@ + $(CC) $(CFLAGS) texrect.o readtex.o $(LIBS) -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 $@ + $(CC) $(CFLAGS) invert.o readtex.o $(LIBS) -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 $@ @@ -117,6 +187,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 .