diff options
author | Ian Romanick <[email protected]> | 2005-10-28 18:41:03 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-10-28 18:41:03 +0000 |
commit | d7d41ceeb030d43974b713f8f0af44e972fa4d94 (patch) | |
tree | 1a500abb20b72fec2aea499b35929fe3d71a5e0f /progs/tests/Makefile | |
parent | 3eec2901db92dd91d96203ab515296eaf4b32927 (diff) |
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.
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r-- | progs/tests/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
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 $@ |