summaryrefslogtreecommitdiffstats
path: root/progs/redbook/Makefile
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-09-11 11:00:54 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-09-11 11:00:54 -0600
commit90c93bbeeec1a8ca75b68004afc5d8cb689860bc (patch)
treef252564eafd8034b0fa19b284cde05fea14c5f7f /progs/redbook/Makefile
parent7ce1d0fb6700fd4998a095de2c9edf5ed920464c (diff)
downloadexternal_mesa3d-90c93bbeeec1a8ca75b68004afc5d8cb689860bc.zip
external_mesa3d-90c93bbeeec1a8ca75b68004afc5d8cb689860bc.tar.gz
external_mesa3d-90c93bbeeec1a8ca75b68004afc5d8cb689860bc.tar.bz2
define new APP_CC configuration variable for building apps/demos/tests
For Cell, need to use different compilers for the libraries vs. the demos/tests to avoid strange link error regarding "_Unwind_GetIPInfo@GCC_4.2.0"
Diffstat (limited to 'progs/redbook/Makefile')
-rw-r--r--progs/redbook/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/redbook/Makefile b/progs/redbook/Makefile
index febc744..956c398 100644
--- a/progs/redbook/Makefile
+++ b/progs/redbook/Makefile
@@ -24,7 +24,7 @@ PROGS = aaindex aapoly aargb accanti accpersp alpha alpha3D anti \
.SUFFIXES: .c
.c: $(LIB_DEP)
- $(CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@
+ $(APP_CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@