aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-01-16 16:23:54 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-01-16 16:23:54 +0000
commit23bc8730641f7b0863b684b8f1fdd103661eaa53 (patch)
tree8a0dca9f4b88fc77fdfa3d33a211b788da14acfe
parent49a4cec685e3203cb90616cc9ce227c5dd1bda43 (diff)
use $(CC) and $(LD) instead of cc and ld
svn path=/trunk/externals/iem16/; revision=7356
-rw-r--r--src/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile b/src/makefile
index 43b2ec0..458372d 100644
--- a/src/makefile
+++ b/src/makefile
@@ -63,11 +63,11 @@ all: $(LINUXOBJECTS)
@echo :: $(LINUXOBJECTS)
- ld -export_dynamic -shared -o iem16.pd_linux *.o -lc -lm
+ $(LD) -export_dynamic -shared -o iem16.pd_linux *.o -lc -lm
strip --strip-unneeded iem16.pd_linux
.c.pd_linux:
- cc $(CFLAGS) -O2 -DPD -fPIC $(INCLUDE) -c -o $*.o $*.c
+ $(CC) $(CFLAGS) -O2 -DPD -fPIC $(INCLUDE) -c -o $*.o $*.c
install: installdocs