diff options
author | David Plans Casal <pland@users.sourceforge.net> | 2006-01-07 14:32:17 +0000 |
---|---|---|
committer | David Plans Casal <pland@users.sourceforge.net> | 2006-01-07 14:32:17 +0000 |
commit | 493f99d1cd1a59cbd17d469805139cceefc6eb18 (patch) | |
tree | 0f789e8869606042bc8f7bc7f2af38a2fd30f58e | |
parent | ffef7f757e6de28bd54bd031e392b2ca4afde0bb (diff) |
changes to take rhythms_memory into account for compilation
svn path=/trunk/externals/frankenstein/; revision=4373
-rwxr-xr-x | makefile.darwin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/makefile.darwin b/makefile.darwin index 19d1834..8370736 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 rhythms_memory.pd_darwin test.pd_darwin GArhythm.pd_darwin +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 .SUFFIXES: .pd_darwin @@ -13,7 +13,7 @@ pd_darwin: chord_melo.pd_darwin rhythms_memory.pd_darwin test.pd_darwin GArhythm # 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? @@ -29,8 +29,8 @@ 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 $(DARWINCFLAGS) $(DARWININCLUDE) -c $*.c common.c + cc -bundle -bundle_loader $(PD) -flat_namespace -o $*.pd_darwin $*.o common.o # cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin # rm -f $*.o |