aboutsummaryrefslogtreecommitdiff
path: root/makefile.darwin
diff options
context:
space:
mode:
Diffstat (limited to 'makefile.darwin')
-rwxr-xr-xmakefile.darwin37
1 files changed, 37 insertions, 0 deletions
diff --git a/makefile.darwin b/makefile.darwin
new file mode 100755
index 0000000..79914a5
--- /dev/null
+++ b/makefile.darwin
@@ -0,0 +1,37 @@
+current: pd_darwin
+
+clean: ; rm -f *.pd_linux *.o *.pd_darwin
+
+
+# ----------------------- Mac OSX -----------------------
+
+pd_darwin: chord_melo.pd_darwin
+
+.SUFFIXES: .pd_darwin
+
+
+# where are the PD header files?
+# leave it blank if it is a system directory (like /usr/local/include),
+# since gcc 3.2 complains about it
+PDPATH=/Users/Development/music/puredatacvs/devel_0_39/src
+#PDPATH=/Users/davidemorelli/Desktop/robaDavide/Pd-0.38-3.app/Contents/Resources/src/
+
+# where is the PD executable?
+PD=/Applications/PdOLD.app/Contents/Resources/bin/pd
+#PD=/usr/local/lib/pd/bin/pd
+#PD=/Users/davidemorelli/Desktop/robaDavide/Pd-0.38-3.app/Contents/Resources/bin/pd
+#PD=/Users/davidemorelli/Desktop/robaDavide/Pd-0.38-3.app/Contents/Resources/src/
+
+
+DARWININCLUDE = -I../../src -I$(PDPATH)
+
+DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
+ -Wno-unused -Wno-parentheses -Wno-switch
+
+.c.pd_darwin:
+ cc $(DARWINCFLAGS) $(DARWININCLUDE) -o $*.o -c $*.c
+ cc -bundle -bundle_loader $(PD) -flat_namespace -o $*.pd_darwin *.o
+# cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin
+# rm -f $*.o
+
+# $(FANNLIB)