Update of /cvsroot/pure-data/pd/extra/choice In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12672/pd/extra/choice
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/choice/makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** makefile 6 Sep 2004 20:20:27 -0000 1.2 --- makefile 3 Jun 2006 19:13:05 -0000 1.3 *************** *** 76,81 ****
pd_darwin: $(NAME).pd_darwin
! .SUFFIXES: .pd_darwin
DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ --- 76,82 ----
pd_darwin: $(NAME).pd_darwin + pd_imac: $(NAME).pd_imac
! .SUFFIXES: .pd_darwin .pd_imac
DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ *************** *** 87,90 **** --- 88,96 ---- 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 + # ----------------------------------------------------------