Update of /cvsroot/pure-data/externals/iem/comport/comport In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24743
Modified Files: makefile Log Message: mac makefile extension
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/iem/comport/comport/makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** makefile 12 Apr 2005 09:14:50 -0000 1.1.1.1 --- makefile 26 Jan 2006 15:48:28 -0000 1.2 *************** *** 81,82 **** --- 81,97 ---- strip --strip-unneeded $*.pd_linux rm $*.o + + # ----------------------- Mac OSX ----------------------- + + pd_darwin: comport.pd_darwin + + .SUFFIXES: .pd_darwin + + 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 + rm -f $*.o +