summaryrefslogtreecommitdiff
path: root/progs/tests/Makefile
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-02-14 17:07:29 +0000
committerIan Romanick <idr@us.ibm.com>2005-02-14 17:07:29 +0000
commit4ea4589302281e539d2a08437a036ca00d1ddc1f (patch)
treeb00dd3de785d2bd75e05ded4e6a7655fcc0e158a /progs/tests/Makefile
parenta5f2dcb57bab73f8a269bfefdedef1b1e10b8ce1 (diff)
Simple test for GL_MESA_pack_invert.
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r--progs/tests/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile
index dbcb088244..c1218b1ca9 100644
--- a/progs/tests/Makefile
+++ b/progs/tests/Makefile
@@ -30,6 +30,7 @@ SOURCES = antialias.c \
fptest1.c \
fptexture.c \
getprocaddress.c \
+ invert.c \
manytex.c \
multipal.c \
no_s3tc.c \
@@ -100,6 +101,12 @@ texrect: texrect.o readtex.o
texrect.o: texrect.c readtex.h
$(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+invert: invert.o readtex.o
+ $(CC) invert.o readtex.o $(LIBS) -o $@
+
+invert.o: invert.c readtex.h
+ $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
readtex.o: readtex.c
$(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@