aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-05-21 02:38:11 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-05-21 02:38:11 +0000
commite8ca81eef401e1b865afb7359d04ceaa3d68cebb (patch)
tree93d13977370d76ac67a97bbf05df074aa66e3339 /Makefile
parent6b5d9ca08f86f74b3aeba330e5910f28643a5e7a (diff)
removed -g and -lSDL
svn path=/trunk/externals/hcs/; revision=640
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d1882da..aa064a3 100644
--- a/Makefile
+++ b/Makefile
@@ -8,13 +8,13 @@ clean: ; rm -f *.pd_linux *.o *~
LINUXCFLAGS = -DUNIX -DPD -O2 -funroll-loops -fomit-frame-pointer \
-Wall -W -Wshadow -Wstrict-prototypes -Werror \
- -Wno-unused -Wno-parentheses -Wno-switch -g
+ -Wno-unused -Wno-parentheses -Wno-switch
LINUXINCLUDE = -I/usr/local/lib/pd/include -I../../pd/src
.c.pd_linux:
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
- ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm -lSDL
+ ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm
strip --strip-unneeded $*.pd_linux
rm $*.o