diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-07-19 02:40:18 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-07-19 02:40:18 +0000 |
commit | f2f551470800a70985b2da33d25ad06cfd1c62db (patch) | |
tree | fe10723047b2f30a88752bf3b9dfcb25eaed1ab7 /Makefile | |
parent | fa3ca89c378d7c5dc2a801b231d896fa259402b2 (diff) |
added (CC) var per Marc Lavalee's suggestion
svn path=/trunk/externals/hcs/; revision=777
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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
|