aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-07-19 02:40:18 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-07-19 02:40:18 +0000
commitf2f551470800a70985b2da33d25ad06cfd1c62db (patch)
treefe10723047b2f30a88752bf3b9dfcb25eaed1ab7 /Makefile
parentfa3ca89c378d7c5dc2a801b231d896fa259402b2 (diff)
added (CC) var per Marc Lavalee's suggestion
svn path=/trunk/externals/hcs/; revision=777
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 800d171..a7041a3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+CC=gcc-3.2
+
pd_linux: pan_gogins~.pd_linux range.pd_linux linuxmouse.pd_linux linuxevent.pd_linux linuxjoystick.pd_linux ifeel.pd_linux
clean: ; rm -f *.pd_linux *.o *~
@@ -13,7 +15,7 @@ LINUXCFLAGS = -DUNIX -DPD -O2 -funroll-loops -fomit-frame-pointer \
LINUXINCLUDE = -I/usr/local/lib/pd/include -I../../pd/src
.c.pd_linux:
- gcc-3.2 $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
+ $(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm
strip --strip-unneeded $*.pd_linux
rm $*.o