summaryrefslogtreecommitdiff
path: root/progs/tests/Makefile
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-04-01 16:07:09 -0600
committerBrian <brian.paul@tungstengraphics.com>2008-04-01 16:07:09 -0600
commit792d524aed23f1b15c3e0e16e23ea2b815f79087 (patch)
tree937232ff9729708319aa5ac99bdc0f8083925df3 /progs/tests/Makefile
parentbccd3f138ccc717fad9073110d15e3321b590476 (diff)
mesa: measure fill rate for drawing a large quad with basic shading/texture modes
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r--progs/tests/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile
index ea34a70855..27e2eafdfc 100644
--- a/progs/tests/Makefile
+++ b/progs/tests/Makefile
@@ -40,6 +40,7 @@ SOURCES = \
fbotest1.c \
fbotest2.c \
fbotexture.c \
+ fillrate.c \
fog.c \
fogcoord.c \
fptest1.c \
@@ -166,6 +167,13 @@ 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 $@