diff options
author | Ian Romanick <[email protected]> | 2005-08-18 19:52:44 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-08-18 19:52:44 +0000 |
commit | b462855c24dc750b386fbd632b60f3fca3fe7d07 (patch) | |
tree | 11e151ee1fd064549f258f31e47e0410e182b9fc /progs/tests/Makefile | |
parent | e918bac8cd85aaefaef5d534d53398257b7df0f9 (diff) |
Add simple regression test for bugzilla #3195.
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r-- | progs/tests/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile index c32eb9beaf6..768820cf3df 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 $@ |