aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-05-29 12:02:41 +0000
committerMax Horn2003-05-29 12:02:41 +0000
commitb31ff8d6d50cf6600b57adc753c4b8c481574abd (patch)
tree9bd155ed445dacb0673c2a3d7838fc4373755a9c
parent89a6ebb86773fbbead264c4c452ef36cb28d9f36 (diff)
downloadscummvm-rg350-b31ff8d6d50cf6600b57adc753c4b8c481574abd.tar.gz
scummvm-rg350-b31ff8d6d50cf6600b57adc753c4b8c481574abd.tar.bz2
scummvm-rg350-b31ff8d6d50cf6600b57adc753c4b8c481574abd.zip
make GCC3 happy by default, too <sigh>
svn-id: r8096
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 508259ff7d..ee13a732fc 100644
--- a/Makefile
+++ b/Makefile
@@ -25,13 +25,13 @@ LIBS :=
OBJS :=
# Turn on useful warnings
-CXXFLAGS+= -Wall -W -pedantic -Wpointer-arith -Wcast-qual -Wcast-align -Wconversion
+CXXFLAGS+= -Wall -pedantic -Wpointer-arith -Wcast-qual -Wcast-align -Wconversion
CXXFLAGS+= -Wshadow -Wstrict-prototypes -Wuninitialized
CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas -Wno-reorder
# Seems GCC 2.95 doesn't support the following, so we do not yet turn them
# on by default (but I'd strongly recommend to all GCC 2.95 users to update
# to a better compiler like GCC 3.x).
-# CXXFLAGS+= -ansi -Wno-unused-parameter
+# CXXFLAGS+= -ansi -W -Wno-unused-parameter
# Load the build rules & settings for the chosen backend
-include build.rules