diff options
author | Brian Paul <[email protected]> | 2008-11-04 16:56:59 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-11-04 16:56:59 -0700 |
commit | aab429c8df228271786890691a43786baf091b37 (patch) | |
tree | d8b66a8071a7c803e0d6f77dae2054cfcea10143 /progs/glsl/Makefile | |
parent | 6c8274078d08e5d87c993603b9bfcdf1ffa51278 (diff) |
added glsl/skinning.c test to test matrix blending/weighting
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r-- | progs/glsl/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index 850b6bdbd1c..41d58499195 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -20,6 +20,7 @@ PROGS = \ noise \ points \ pointcoord \ + skinning \ texdemo1 \ toyball \ twoside \ @@ -140,6 +141,13 @@ pointcoord: pointcoord.o readtex.o shaderutil.o $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) pointcoord.o readtex.o shaderutil.o $(LIBS) -o $@ +skinning.o: skinning.c readtex.h extfuncs.h shaderutil.h + $(CC) -c -I$(INCDIR) $(CFLAGS) skinning.c + +skinning: skinning.o readtex.o shaderutil.o + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) skinning.o readtex.o shaderutil.o $(LIBS) -o $@ + + texdemo1.o: texdemo1.c readtex.h extfuncs.h shaderutil.h $(CC) -c -I$(INCDIR) $(CFLAGS) texdemo1.c |