diff options
author | Brian <[email protected]> | 2007-03-26 10:13:02 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-26 10:13:02 -0600 |
commit | d619cceea47dc3070ebb7f7ea4f8b6b31a672d38 (patch) | |
tree | f8b8a9f3fdc3f17a43436af270b22754b1749d31 /progs/tests/Makefile | |
parent | 76f3b66e0489526694d6a39b4a6ac3b1c2bee100 (diff) | |
parent | e71c34aaa173ca451fa02e526ead77758f7eeb74 (diff) |
merge of glsl-compiler-1 branch
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r-- | progs/tests/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile index 3a22285250c..9edef74fb2c 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -33,6 +33,7 @@ SOURCES = \ crossbar.c \ cva.c \ dinoshade.c \ + drawbuffers.c \ floattex.c \ fbotest1.c \ fbotest2.c \ @@ -122,6 +123,12 @@ afsmultiarb: afsmultiarb.o readtex.o afsmultiarb.o: afsmultiarb.c readtex.h $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ +drawbuffers: drawbuffers.o + $(CC) $(CFLAGS) drawbuffers.o $(LIBS) -o $@ + +drawbuffers.o: drawbuffers.c extfuncs.h + $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + texrect: texrect.o readtex.o $(CC) $(CFLAGS) texrect.o readtex.o $(LIBS) -o $@ @@ -150,6 +157,8 @@ readtex.h: $(TOP)/progs/util/readtex.h readtex.c: $(TOP)/progs/util/readtex.c ln -s $(TOP)/progs/util/readtex.c . +extfuncs.h: $(TOP)/progs/util/extfuncs.h + ln -s $(TOP)/progs/util/extfuncs.h . |