Update of /cvsroot/pure-data/pd/extra/loop~ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12672/pd/extra/loop~
Modified Files: makefile Log Message: FFT package selection
Zmoelnig's multi-'$' patch
big-soundfile support
Patch to set open directories (openpanel, savepanel)
patch to allow funny characters in extern names
fixed makefile.in to support intel mac
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/pd/extra/loop~/makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** makefile 6 Sep 2004 20:20:28 -0000 1.6 --- makefile 3 Jun 2006 19:13:05 -0000 1.7 *************** *** 77,82 ****
pd_darwin: $(NAME).pd_darwin
! .SUFFIXES: .pd_darwin
DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ --- 77,83 ----
pd_darwin: $(NAME).pd_darwin + pd_imac: $(NAME).pd_imac
! .SUFFIXES: .pd_darwin .pd_imac
DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ *************** *** 88,91 **** --- 89,97 ---- rm -f $*.o
+ .c.pd_imac: + $(CC) $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c + $(CC) -bundle -undefined suppress -flat_namespace -o $*.pd_imac $*.o + rm -f $*.o + # ----------------------------------------------------------