From: Brian Paul Date: Fri, 2 Jan 2009 23:52:00 +0000 (-0700) Subject: mesa: replace CC with APP_CC in progs/glsl/Makefile X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=84cffc2e7fbeab8ed5dfb0b6b8d3829e0654ab02;p=mesa.git mesa: replace CC with APP_CC in progs/glsl/Makefile --- diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index 9c31ef67b01..4d4da31dc1e 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -120,10 +120,10 @@ identity: identity.o shaderutil.o fragcoord.o: fragcoord.c extfuncs.h shaderutil.h - $(CC) -c -I$(INCDIR) $(CFLAGS) fragcoord.c + $(APP_CC) -c -I$(INCDIR) $(CFLAGS) fragcoord.c fragcoord: fragcoord.o shaderutil.o - $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) fragcoord.o shaderutil.o $(LIBS) -o $@ + $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) fragcoord.o shaderutil.o $(LIBS) -o $@ mandelbrot.o: mandelbrot.c extfuncs.h shaderutil.h @@ -161,10 +161,10 @@ pointcoord: pointcoord.o readtex.o shaderutil.o samplers.o: samplers.c readtex.h extfuncs.h shaderutil.h - $(CC) -c -I$(INCDIR) $(CFLAGS) samplers.c + $(APP_CC) -c -I$(INCDIR) $(CFLAGS) samplers.c samplers: samplers.o readtex.o shaderutil.o - $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) samplers.o readtex.o shaderutil.o $(LIBS) -o $@ + $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) samplers.o readtex.o shaderutil.o $(LIBS) -o $@ skinning.o: skinning.c readtex.h extfuncs.h shaderutil.h @@ -211,10 +211,10 @@ vert-or-frag-only: vert-or-frag-only.o shaderutil.o vert-or-frag-only.o: vert-or-frag-only.c extfuncs.h shaderutil.h - $(CC) -c -I$(INCDIR) $(CFLAGS) vert-or-frag-only.c + $(APP_CC) -c -I$(INCDIR) $(CFLAGS) vert-or-frag-only.c vert-or-frag-only: vert-or-frag-only.o shaderutil.o - $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) vert-or-frag-only.o shaderutil.o $(LIBS) -o $@ + $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) vert-or-frag-only.o shaderutil.o $(LIBS) -o $@