aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuha Vehviläinen <jusu@users.sourceforge.net>2002-09-12 08:38:39 +0000
committerJuha Vehviläinen <jusu@users.sourceforge.net>2002-09-12 08:38:39 +0000
commitff42000872c343e1ed0e71fc38b414f4b99a9329 (patch)
treee923f349d3e06b2171eafeee5f4af6850c9ea0e6
parentde0d056fa6094b46ce74c99b93295d51c97ce829 (diff)
OS X binaries by Olaf Matthes
svn path=/trunk/externals/vbap/; revision=126
-rw-r--r--define_loudspeakers.pd_darwinbin0 -> 17888 bytes
-rw-r--r--makefile107
-rw-r--r--vbap.pd_darwinbin0 -> 17748 bytes
3 files changed, 107 insertions, 0 deletions
diff --git a/define_loudspeakers.pd_darwin b/define_loudspeakers.pd_darwin
new file mode 100644
index 0000000..f39a068
--- /dev/null
+++ b/define_loudspeakers.pd_darwin
Binary files differ
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..0d7d9bb
--- /dev/null
+++ b/makefile
@@ -0,0 +1,107 @@
+NAME=vbap
+CSYM=vbap
+NAMEB=define_loudspeakers
+CSYMB=define_loudspeakers
+
+current: pd_nt pd_darwin
+
+# ----------------------- NT -----------------------
+
+pd_nt: $(NAME).dll
+
+.SUFFIXES: .dll
+
+PDNTCFLAGS = /W3 /WX /O2 /G6 /DNT /DPD /nologo
+VC="C:\Programme\Microsoft Visual Studio\VC98"
+
+PDNTINCLUDE = /I. /Ic:\pd\tcl\include /Ic:\pd\src /I$(VC)\include /Iinclude
+
+PDNTLDIR = $(VC)\Lib
+PDNTLIB = $(PDNTLDIR)\libc.lib \
+ $(PDNTLDIR)\oldnames.lib \
+ $(PDNTLDIR)\kernel32.lib \
+ $(PDNTLDIR)\user32.lib \
+ $(PDNTLDIR)\uuid.lib \
+ $(PDNTLDIR)\ws2_32.lib \
+ c:\pd\bin\pd.lib \
+
+.c.dll:
+ cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $(NAME).c
+ cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $(NAMEB).c
+ link /dll /export:$(CSYM)_setup $(NAME).obj $(PDNTLIB)
+ link /dll /export:$(CSYMB)_setup $(NAMEB).obj $(PDNTLIB)
+
+# ----------------------- IRIX 5.x -----------------------
+
+pd_irix5: $(NAME).pd_irix5
+
+.SUFFIXES: .pd_irix5
+
+SGICFLAGS5 = -o32 -DPD -DUNIX -DIRIX -O2
+
+SGIINCLUDE = -I../../src
+
+.c.pd_irix5:
+ cc $(SGICFLAGS5) $(SGIINCLUDE) -o $*.o -c $*.c
+ ld -elf -shared -rdata_shared -o $*.pd_irix5 $*.o
+ rm $*.o
+
+# ----------------------- IRIX 6.x -----------------------
+
+pd_irix6: $(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
+
+.c.pd_irix6:
+ cc $(SGICFLAGS6) $(SGIINCLUDE) -o $*.o -c $*.c
+ ld -n32 -IPA -shared -rdata_shared -o $*.pd_irix6 $*.o
+ rm $*.o
+
+# ----------------------- MAX OS X -----------------------
+
+pd_darwin: $(NAME).pd_darwin $(NAMEB).pd_darwin
+
+.SUFFIXES: .pd_darwin
+
+DARWINCFLAGS = -DPD -DUNIX -DMACOSX -O2 \
+ -Wall -W -Wshadow -Wstrict-prototypes \
+ -Wno-unused -Wno-parentheses -Wno-switch
+
+DARWININCLUDE = -I../../src
+
+.c.pd_darwin:
+ cc $(DARWINCFLAGS) $(DARWININCLUDE) -o $*.o -c $*.c
+ cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o
+ rm -f $*.o ../$*.pd_darwin
+ ln -s $*/$*.pd_darwin ..
+
+# ----------------------- LINUX i386 -----------------------
+
+pd_linux: $(NAME).pd_linux $(NAMEB).pd_linux
+
+.SUFFIXES: .pd_linux
+
+LINUXCFLAGS = -DPD -DUNIX -O2 -funroll-loops -fomit-frame-pointer \
+ -Wall -W -Wshadow -Wstrict-prototypes -Werror \
+ -Wno-unused -Wno-parentheses -Wno-switch
+
+LINUXINCLUDE = -I../../src
+
+.c.pd_linux:
+ cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
+ ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm -L/usr/local/lib
+ strip --strip-unneeded $*.pd_linux
+ rm -f $*.o ../$*.pd_linux
+ ln -s $*/$*.pd_linux ..
+
+# ----------------------------------------------------------
+
+install:
+ cp help-*.pd ../../doc/5.reference
+
+clean:
+ rm -f *.o *.pd_* so_locations
diff --git a/vbap.pd_darwin b/vbap.pd_darwin
new file mode 100644
index 0000000..66701e3
--- /dev/null
+++ b/vbap.pd_darwin
Binary files differ