summaryrefslogtreecommitdiff
path: root/progs/tests/Makefile
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-08-18 19:52:44 +0000
committerIan Romanick <idr@us.ibm.com>2005-08-18 19:52:44 +0000
commitb462855c24dc750b386fbd632b60f3fca3fe7d07 (patch)
tree11e151ee1fd064549f258f31e47e0410e182b9fc /progs/tests/Makefile
parente918bac8cd85aaefaef5d534d53398257b7df0f9 (diff)
Add simple regression test for bugzilla #3195.
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 c32eb9beaf..768820cf3d 100644
--- a/progs/tests/Makefile
+++ b/progs/tests/Makefile
@@ -23,6 +23,7 @@ SOURCES = antialias.c \
blendsquare.c \
bufferobj.c \
bug_3101.c \
+ bug_3195.c \
crossbar.c \
cva.c \
dinoshade.c \
@@ -104,6 +105,12 @@ texrect: texrect.o readtex.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 $@