release 1.0

svn path=/trunk/externals/iem/comport/; revision=4501
This commit is contained in:
Winfried Ritsch 2006-01-27 09:43:09 +00:00
parent cb96304368
commit 6b4bddf139
3 changed files with 19 additions and 2 deletions

View file

@ -1,3 +1,6 @@
1.0
no changes
1.0RC1 - (12.4.2005) 1.0RC1 - (12.4.2005)
first check in pure-data.sourceforge.net first check in pure-data.sourceforge.net

View file

@ -3,7 +3,6 @@ bird - PD external for unix/windows to use the flock of birds
(c) 1998-2005 Winfried Ritsch (see LICENCE.txt) (c) 1998-2005 Winfried Ritsch (see LICENCE.txt)
Institute for Electronic Music - Graz Institute for Electronic Music - Graz
the external comport is also needed for interfacing. the external comport is also needed for interfacing.
Please see testbird.pd for more help. Please see testbird.pd for more help.

View file

@ -6,7 +6,7 @@
# #
current: 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 ----------------------- # ----------------------- NT -----------------------
pd_nt: bird.dll pd_nt: bird.dll
@ -80,3 +80,18 @@ LINUXINCLUDE = -I../../src
ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm
strip --strip-unneeded $*.pd_linux strip --strip-unneeded $*.pd_linux
rm $*.o 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