diff options
author | Ian Romanick <[email protected]> | 2007-05-16 14:46:13 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2007-05-16 14:46:13 -0700 |
commit | 2f61cbd30cdf0534da5e8281bc27886edb834b06 (patch) | |
tree | a4673789bde9f23106299b91cc408e8c536277db /progs/tests/Makefile | |
parent | 78bd2912f86a53b53d3fb5362edae2c6455239b0 (diff) |
Add simple program to test GL_MESA_texture_array.
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 9edef74fb2c..b506db3e7bf 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -23,6 +23,7 @@ SOURCES = \ arbvptest3.c \ arbvptorus.c \ arbvpwarpmesh.c \ + arraytexture.c \ blendminmax.c \ blendsquare.c \ bufferobj.c \ @@ -117,6 +118,12 @@ getprocaddress: getprocaddress.c getproclist.h getproclist.h: $(TOP)/src/mesa/glapi/gl_API.xml getprocaddress.c getprocaddress.py python getprocaddress.py > getproclist.h +arraytexture: arraytexture.o readtex.o + $(CC) $(CFLAGS) arraytexture.o readtex.o $(LIBS) -o $@ + +arraytexture.o: arraytexture.c readtex.h + $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + afsmultiarb: afsmultiarb.o readtex.o $(CC) $(CFLAGS) afsmultiarb.o readtex.o $(LIBS) -o $@ |