diff options
-rw-r--r-- | bird/CHANGES.txt | 3 | ||||
-rw-r--r-- | bird/README.txt | 1 | ||||
-rw-r--r-- | bird/makefile | 17 |
3 files changed, 19 insertions, 2 deletions
diff --git a/bird/CHANGES.txt b/bird/CHANGES.txt index 98dfd95..5174d12 100644 --- a/bird/CHANGES.txt +++ b/bird/CHANGES.txt @@ -1,3 +1,6 @@ +1.0 + no changes + 1.0RC1 - (12.4.2005) first check in pure-data.sourceforge.net diff --git a/bird/README.txt b/bird/README.txt index ba6d116..a5ee02f 100644 --- a/bird/README.txt +++ b/bird/README.txt @@ -3,7 +3,6 @@ bird - PD external for unix/windows to use the flock of birds (c) 1998-2005 Winfried Ritsch (see LICENCE.txt) Institute for Electronic Music - Graz - the external comport is also needed for interfacing. Please see testbird.pd for more help. diff --git a/bird/makefile b/bird/makefile index 2e10a68..e051b47 100644 --- a/bird/makefile +++ b/bird/makefile @@ -6,7 +6,7 @@ # current: - echo choose one command: make pd_linux, make pd_nt, make pd_irix5, make pd_irix6 + echo choose one command: make pd_linux, make pd_nt, make pd_irix5, make pd_irix6, make pd_darwin # ----------------------- NT ----------------------- pd_nt: bird.dll @@ -80,3 +80,18 @@ LINUXINCLUDE = -I../../src ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm strip --strip-unneeded $*.pd_linux rm $*.o + +# ----------------------- Mac OSX ----------------------- + +pd_darwin: bird.pd_darwin + +.SUFFIXES: .pd_darwin + +DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ + -Wno-unused -Wno-parentheses -Wno-switch + +.c.pd_darwin: + cc $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c + cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o + rm -f $*.o + |