diff options
-rwxr-xr-x | makefile.darwin | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/makefile.darwin b/makefile.darwin index 8370736..571f88d 100755 --- a/makefile.darwin +++ b/makefile.darwin @@ -5,7 +5,7 @@ clean: ; rm -f *.pd_linux *.o *.pd_darwin # ----------------------- Mac OSX ----------------------- -pd_darwin: chord_melo.pd_darwin harmonizer.pd_darwin chords_memory.pd_darwin common.pd_darwin rhythms_memory.pd_darwin GArhythm.pd_darwin test.pd_darwin +pd_darwin: voicing_analyzer.pd_darwin chord_melo.pd_darwin harmonizer.pd_darwin chords_memory.pd_darwin rhythms_memory.pd_darwin GArhythm.pd_darwin test.pd_darwin .SUFFIXES: .pd_darwin @@ -13,11 +13,13 @@ pd_darwin: chord_melo.pd_darwin harmonizer.pd_darwin chords_memory.pd_darwin com # 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=/Applications/PdOLD.app/Contents/Resources/src/ +#PDPATH=/Applications/PdOLD.app/Contents/Resources/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=/Applications/PdOLD.app/Contents/Resources/bin/pd +PDPATH=/Volumes/Student/Programmi/Pd-0.40-2.app/Contents/Resources/src/ +PD=/Volumes/Student/Programmi/Pd-0.40-2.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/ |