diff options
author | Brian <brian@yutani.localnet.net> | 2007-03-12 10:30:36 -0600 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-03-12 10:30:36 -0600 |
commit | d2a6f43eaf0f50d7cc495ee32186429abad0e34f (patch) | |
tree | e325369146dc8cf46256bb937bdd92fde2af332b /progs | |
parent | 3f7ef618b6ea9d80aaef416ca9ddf6994bcbec8e (diff) |
extra stuff for drawbuffers test
Diffstat (limited to 'progs')
-rw-r--r-- | progs/tests/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile index 482ae2c473..9edef74fb2 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -123,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 $@ @@ -151,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 . |