diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile | 4 |
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 |