From d7d41ceeb030d43974b713f8f0af44e972fa4d94 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Fri, 28 Oct 2005 18:41:03 +0000 Subject: Add new test "texfilt". This test is a cousin to texwrap. Instead of testing various texture wrap modes, this test examines various texture filter modes, including anisotropic. Add CFLAGS to a couple places in Makefile so that 32-bit builds on 64-bit archs will work correctly. --- progs/tests/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'progs/tests/Makefile') diff --git a/progs/tests/Makefile b/progs/tests/Makefile index 03bb6c2ad50..3143b2a6c23 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -47,6 +47,7 @@ SOURCES = antialias.c \ stencilwrap.c \ stencil_wrap.c \ tex1d.c \ + texfilt.c \ texline.c \ texobjshare.c \ texrect.c \ @@ -100,13 +101,13 @@ getproclist.h: $(TOP)/src/mesa/glapi/gl_API.xml getprocaddress.c getprocaddress. python getprocaddress.py > getproclist.h afsmultiarb: afsmultiarb.o readtex.o - $(CC) afsmultiarb.o readtex.o $(LIBS) -o $@ + $(CC) $(CFLAGS) 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 $@ + $(CC) $(CFLAGS) texrect.o readtex.o $(LIBS) -o $@ texrect.o: texrect.c readtex.h $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ @@ -118,7 +119,7 @@ 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 $@ -- cgit v1.2.3