diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-11-05 17:14:23 -0700 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-11-05 17:14:23 -0700 |
commit | 2c204bbf7749ed0517c5826e2aae66997a0c4623 (patch) | |
tree | e4e60fa504b777e37431bc59a6ed89854a223f3f | |
parent | cbce12b5404846520bb776f73885f0ea99a13124 (diff) |
use APP_CC, not CC for skinning demo
-rw-r--r-- | progs/glsl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index 0874cfc59..c5d62d237 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -150,10 +150,10 @@ pointcoord: pointcoord.o readtex.o shaderutil.o skinning.o: skinning.c readtex.h extfuncs.h shaderutil.h - $(CC) -c -I$(INCDIR) $(CFLAGS) skinning.c + $(APP_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 $@ + $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) skinning.o readtex.o shaderutil.o $(LIBS) -o $@ texdemo1.o: texdemo1.c readtex.h extfuncs.h shaderutil.h |