summaryrefslogtreecommitdiff
path: root/progs/glsl/Makefile
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@tungstengraphics.com>2008-11-05 11:59:12 +0000
committerAlan Hourihane <alanh@tungstengraphics.com>2008-11-05 11:59:12 +0000
commit2382dc8aff9983da9ef1be03de38d4ab82105b19 (patch)
tree9a468d991fa58d0bb41244ee343410fd7dabdcf8 /progs/glsl/Makefile
parent9e1f0e173e5619d2ce95a74158803d94b3d6ff8a (diff)
parentaab429c8df228271786890691a43786baf091b37 (diff)
Merge commit 'origin/master' into gallium-0.2
Diffstat (limited to 'progs/glsl/Makefile')
-rw-r--r--progs/glsl/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile
index 04c1d25ed7..0874cfc59e 100644
--- a/progs/glsl/Makefile
+++ b/progs/glsl/Makefile
@@ -21,6 +21,7 @@ PROGS = \
noise \
points \
pointcoord \
+ skinning \
texdemo1 \
toyball \
twoside \
@@ -148,6 +149,13 @@ pointcoord: pointcoord.o readtex.o shaderutil.o
$(APP_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
$(APP_CC) -c -I$(INCDIR) $(CFLAGS) texdemo1.c