diff options
author | Guenter Geiger <ggeiger@users.sourceforge.net> | 2004-02-22 16:21:48 +0000 |
---|---|---|
committer | Guenter Geiger <ggeiger@users.sourceforge.net> | 2004-02-22 16:21:48 +0000 |
commit | 2caf1386805745c7a6e2ea7c06dd61d6357f6a43 (patch) | |
tree | 415f39b01b6ab787a35d854662cd47e328882a90 /pd/extra/lrshift~/makefile | |
parent | 8786788b04d81d6e9c4be17d4a3e59b6af3abac6 (diff) |
aligned with version 0.37-1test6
svn path=/trunk/; revision=1331
Diffstat (limited to 'pd/extra/lrshift~/makefile')
-rw-r--r-- | pd/extra/lrshift~/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pd/extra/lrshift~/makefile b/pd/extra/lrshift~/makefile index 00ed2493..4fee4687 100644 --- a/pd/extra/lrshift~/makefile +++ b/pd/extra/lrshift~/makefile @@ -36,7 +36,7 @@ SGICFLAGS5 = -o32 -DPD -DUNIX -DIRIX -O2 SGIINCLUDE = -I../../src .c.pd_irix5: - cc $(SGICFLAGS5) $(SGIINCLUDE) -o $*.o -c $*.c + $(CC) $(SGICFLAGS5) $(SGIINCLUDE) -o $*.o -c $*.c ld -elf -shared -rdata_shared -o $*.pd_irix5 $*.o rm $*.o @@ -51,7 +51,7 @@ SGICFLAGS6 = -n32 -DPD -DUNIX -DIRIX -DN32 -woff 1080,1064,1185 \ -Ofast=ip32 .c.pd_irix6: - cc $(SGICFLAGS6) $(SGIINCLUDE) -o $*.o -c $*.c + $(CC) $(SGICFLAGS6) $(SGIINCLUDE) -o $*.o -c $*.c ld -n32 -IPA -shared -rdata_shared -o $*.pd_irix6 $*.o rm $*.o @@ -83,8 +83,8 @@ DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch .c.pd_darwin: - cc $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c - cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o + $(CC) $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c + $(CC) -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o rm -f $*.o # ---------------------------------------------------------- |