Update of /cvsroot/pure-data/externals/postlude/flib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28768
Modified Files: makefile Log Message: Added frequency domain correlation to cross~
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/postlude/flib/makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** makefile 7 Apr 2006 10:30:37 -0000 1.2 --- makefile 19 Apr 2006 17:48:37 -0000 1.3 *************** *** 1,5 **** ! # Makefile hacked together from various others, mostly the old zexy makefile I think. All credit to IOhannes Zmoelnig and anyone else who understands make better than me. # ! # Should work with Linux and OS X. No idea about Windows.
NAME=flib --- 1,5 ---- ! # Makefile hacked together from various others, mostly the old zexy makefile and pique. All credit to IOhannes Zmoelnig, Miller Puckette and anyone else who understands make better than me. # ! # Should work with Linux and OS X. No idea about Windows and Irix.
NAME=flib *************** *** 153,156 **** --- 153,221 ---- strip --strip-unneeded $(NAME).pd_linux
+ # ----------------------- IRIX 5.x ----------------------- + + pd_irix5: src/$(NAME).pd_irix5 + + .SUFFIXES: .pd_irix5 + + SGIOBJECTS = $(TARGETS:%=%.o) + + SGICFLAGS5 = -o32 -DPD -DUNIX -DIRIX -O2 + + SGIINCLUDE = -I/usr/include/ -I/usr/local/include/ + + .c.pd_irix5: + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/sc~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/ss~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/irreg~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/mspec~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/peak~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/pspec~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/sfm~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/trist~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/pp~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/bmax~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/melf~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/clean~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/wdv~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/hca~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/cross~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c $*.c + ld -elf -shared -rdata_shared -o $(NAME).pd_irix5 $(NAME).o $(LINUXOBJECTS) -lm -lc + rm $*.o + + # ----------------------- IRIX 6.x ----------------------- + + pd_irix6: src/$(NAME).pd_irix6 + + .SUFFIXES: .pd_irix6 + + SGICFLAGS6 = -n32 -DPD -DUNIX -DIRIX -DN32 -woff 1080,1064,1185 \ + -OPT:roundoff=3 -OPT:IEEE_arithmetic=3 -OPT:cray_ivdep=true \ + -Ofast=ip32 + + SGIOBJECTS = $(TARGETS:%=%.o) + + SGIINCLUDE = -I/usr/include/ -I/usr/local/include/ + + .c.pd_irix6: + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/ss~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/irreg~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/mspec~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/peak~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/pspec~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/sfm~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/trist~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/pp~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/bmax~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/melf~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/clean~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/wdv~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/hca~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c src/cross~.c + $(CC) $(SGICFLAGS) $(SGIINCLUDE) -c $*.c + ld -n32 -IPA -shared -rdata_shared -o $*.pd_irix6 $(NAME).o $(LINUXOBJECTS) -lm -lc + rm $*.o + # ----------------------------------------------------------