aboutsummaryrefslogtreecommitdiff
path: root/pso
diff options
context:
space:
mode:
Diffstat (limited to 'pso')
-rw-r--r--pso/config-pd-darwin.txt12
-rw-r--r--pso/makefile.pd-darwin6
2 files changed, 11 insertions, 7 deletions
diff --git a/pso/config-pd-darwin.txt b/pso/config-pd-darwin.txt
index 862f727..00f570b 100644
--- a/pso/config-pd-darwin.txt
+++ b/pso/config-pd-darwin.txt
@@ -8,20 +8,24 @@
# 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=/usr/local/pd/src
+#PDPATH=/usr/local/src/pd/src
+PDPATH=../../../pd/src
# where is the PD executable?
-PD=/usr/local/pd/bin/pd
+#PD=/usr/local/bin/pd
+PD=../../../pd/bin/pd
# where do the flext libraries reside?
-FLEXTPATH=/usr/local/pd/flext
+#FLEXTPATH=/usr/local/lib/pd/flext
+FLEXTPATH=../../grill/flext
# where should flext libraries be built?
TARGDIR=./pd-darwin
# where should pool be installed?
# (leave blank to omit installation)
-INSTPATH=/usr/local/pd/extra
+#INSTPATH=/usr/local/lib/pd/extra
+INSTPATH=
# additional compiler flags
# (check if they match your system!)
diff --git a/pso/makefile.pd-darwin b/pso/makefile.pd-darwin
index 5fd70f9..e9e4006 100644
--- a/pso/makefile.pd-darwin
+++ b/pso/makefile.pd-darwin
@@ -12,10 +12,11 @@ CONFIG=config-pd-darwin.txt
include $(CONFIG)
-FLEXTLIB=$(FLEXTPATH)/flext.a
+#FLEXTLIB=$(FLEXTPATH)/flext.a
+FLEXTLIB=$(FLEXTPATH)/pd-darwin/libflext.a
# compiler+linker stuff
-INCLUDES=$(PDPATH)
+INCLUDES=$(PDPATH) ../../grill/flext/source
LIBPATH=
FLAGS=-DFLEXT_SYS=2
CFLAGS=-O6 ${UFLAGS} -Wno-unused -Wno-parentheses -Wno-switch -Wstrict-prototypes
@@ -67,7 +68,6 @@ install:: $(TARGET)
.PHONY: clean
clean:
rm -f $(TARGDIR)/*.o $(TARGET)
-