aboutsummaryrefslogtreecommitdiff
path: root/Makefile.new
diff options
context:
space:
mode:
authorJonathan Gray2003-07-28 11:46:32 +0000
committerJonathan Gray2003-07-28 11:46:32 +0000
commitdeef4a53144be30c2a8b6792e9f34c2387e7ff13 (patch)
treecb53fb15aedefaff20793a20b535cf6cad510c17 /Makefile.new
parentc1cbd4605e6a3ae3a28462cdb30482454e1b6da0 (diff)
downloadscummvm-rg350-deef4a53144be30c2a8b6792e9f34c2387e7ff13.tar.gz
scummvm-rg350-deef4a53144be30c2a8b6792e9f34c2387e7ff13.tar.bz2
scummvm-rg350-deef4a53144be30c2a8b6792e9f34c2387e7ff13.zip
correct cflags variables
svn-id: r9241
Diffstat (limited to 'Makefile.new')
-rw-r--r--Makefile.new3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.new b/Makefile.new
index cb0014dbdb..6e01833ab1 100644
--- a/Makefile.new
+++ b/Makefile.new
@@ -17,7 +17,6 @@ CP := cp
# Default compilation parameters. Normally don't edit these #
#######################################################################
-CXXFLAGS:= -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
DEFINES := -DHAVE_CONFIG_H
LDFLAGS :=
INCLUDES:= -I. -Icommon
@@ -30,7 +29,7 @@ include config.mak
# Uncomment this for stricter compile time code verification
# CXXFLAGS+= -Wshadow -Werror
-CXXFLAGS += $(OPTFLAGS)
+CXXFLAGS:= -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas $(CXXFLAGS)
#######################################################################
# Misc stuff - you should normally never have to edit this #