aboutsummaryrefslogtreecommitdiff
path: root/entry/makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-24 00:36:01 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-24 00:36:01 +0000
commitb0db8fc05f155e14a3c038c4f0416ec1e500297f (patch)
tree19dc44dba4c51c00a0952e0be227efa9d9667e31 /entry/makefile
parent895c0955b00f5de81d970c7897b7a5a2d4eb7350 (diff)
- cleaned up unused variables
- added entry_free() function - added structure to support second outlet outputing each keystroke: - second outlet - keyup message/entry_keyup method svn path=/trunk/externals/bbogart/; revision=8868
Diffstat (limited to 'entry/makefile')
-rw-r--r--entry/makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/entry/makefile b/entry/makefile
index 29fbdd5..f612434 100644
--- a/entry/makefile
+++ b/entry/makefile
@@ -52,8 +52,8 @@ pd_linux: entry.pd_linux
.SUFFIXES: .pd_linux
LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \
- -Wall -W -Wshadow -Wstrict-prototypes -Werror \
- -Wno-unused -Wno-parentheses -Wno-switch
+ -Wall -W -Wshadow -Wstrict-prototypes
+
LINUXINCLUDE = -I../../src -I../../../pd/src
@@ -69,11 +69,10 @@ pd_darwin: entry.pd_darwin
.SUFFIXES: .pd_darwin
-DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch
+DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes
.c.pd_darwin:
cc $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
- cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o
+ cc -bundle -bundle_loader ../../../pd/bin/pd -o $*.pd_darwin $*.o
rm -f $*.o