diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-05-21 02:38:11 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-05-21 02:38:11 +0000 |
commit | e8ca81eef401e1b865afb7359d04ceaa3d68cebb (patch) | |
tree | 93d13977370d76ac67a97bbf05df074aa66e3339 /Makefile | |
parent | 6b5d9ca08f86f74b3aeba330e5910f28643a5e7a (diff) |
removed -g and -lSDL
svn path=/trunk/externals/hcs/; revision=640
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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
|