aboutsummaryrefslogtreecommitdiff
path: root/Makefile
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
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')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 97aaebc96d..a8125d3c67 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,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
@@ -48,7 +48,7 @@ LIBS += -lmad
# LIBS += -lasound
# Uncomment this for stricter compile time code verification
-# CFLAGS += -Wshadow -Werror
+# CXXFLAGS+= -Wshadow -Werror
#######################################################################