aboutsummaryrefslogtreecommitdiff
path: root/Makefile.mingw
diff options
context:
space:
mode:
authorMax Horn2002-12-09 13:38:01 +0000
committerMax Horn2002-12-09 13:38:01 +0000
commit098b1d52ca7ad394eaee0481c6c43ed0234166f6 (patch)
tree387525288eb73f5f7752270316590b962233d99a /Makefile.mingw
parent90b844d95e82f70e31bb59abf05252d86f5849ec (diff)
downloadscummvm-rg350-098b1d52ca7ad394eaee0481c6c43ed0234166f6.tar.gz
scummvm-rg350-098b1d52ca7ad394eaee0481c6c43ed0234166f6.tar.bz2
scummvm-rg350-098b1d52ca7ad394eaee0481c6c43ed0234166f6.zip
change CFLAGS to CXXFLAGS
svn-id: r5896
Diffstat (limited to 'Makefile.mingw')
-rw-r--r--Makefile.mingw4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.mingw b/Makefile.mingw
index 3c04526889..11a074c6e6 100644
--- a/Makefile.mingw
+++ b/Makefile.mingw
@@ -23,7 +23,7 @@ CP = cp
# Default compilation parameters. Normally don't edit these #
#######################################################################
-CFLAGS := -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
+CXXFLAGS:= -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
DEFINES :=
LDFLAGS :=
INCLUDES:= -I. -Icommon -Iscumm $(SDL_CFLAGS)
@@ -48,7 +48,7 @@ DEFINES += -DUSE_VORBIS
LIBS += -lvorbisfile -lvorbis -logg
# Uncomment this for stricter compile time code verification
-# CFLAGS += -Wshadow -Werror
+# CXXFLAGS+= -Wshadow -Werror
#######################################################################
# Misc stuff - you should normally never have to edit this #