diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-10-17 16:15:04 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-10-17 16:15:04 +0000 |
commit | ef55dfc53aed0d7ab8269321b8d54f3cac21c335 (patch) | |
tree | 7e3dd14107e9f4b42a96597325ba689cffd66233 /src/Makefile | |
parent | 0ec3b348a5c2c5ea80d95bae37b34417ab8685e1 (diff) |
removed the "-Werror"
svn path=/trunk/externals/iem/iemguts/; revision=8830
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 767d012..dc3f0db 100644 --- a/src/Makefile +++ b/src/Makefile @@ -63,7 +63,7 @@ TARGETS=$(SOURCES:.c=.$(EXTENSION)) pd_linux: $(TARGETS) LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -fPIC \ - -Wall -W -Wshadow -Wstrict-prototypes -Werror \ + -Wall -W -Wshadow -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch LINUXLDFLAGS = -export_dynamic -shared -lc -lm @@ -143,7 +143,7 @@ PDNTLIB = $(PDNTLDIR)\libc.lib \ pd_nt: $(TARGETS) MINGWCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ - -Wall -W -Wshadow -Wstrict-prototypes -Werror \ + -Wall -W -Wshadow -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch -mms-bitfields MINGWLDFLAGS = -export_dynamic -shared -lm -lkernel32 -lcoldname -lcrtdll -lpd -L$(PDLIBDIR) |