aboutsummaryrefslogtreecommitdiff
path: root/Makefile.mingw
diff options
context:
space:
mode:
authorTravis Howell2002-11-20 14:45:00 +0000
committerTravis Howell2002-11-20 14:45:00 +0000
commit85fe6a1ac57f3ecb434af7e35e15d276d6749b5a (patch)
tree21a4ec0389419efa37111a18d7460dd3e54d4f5d /Makefile.mingw
parent80f13e1973da26f804fbdee6616dc5a0a1a185b9 (diff)
downloadscummvm-rg350-85fe6a1ac57f3ecb434af7e35e15d276d6749b5a.tar.gz
scummvm-rg350-85fe6a1ac57f3ecb434af7e35e15d276d6749b5a.tar.bz2
scummvm-rg350-85fe6a1ac57f3ecb434af7e35e15d276d6749b5a.zip
Include simon debug options by default
svn-id: r5642
Diffstat (limited to 'Makefile.mingw')
-rw-r--r--Makefile.mingw16
1 files changed, 14 insertions, 2 deletions
diff --git a/Makefile.mingw b/Makefile.mingw
index 02251ea2ca..67eb9f2a3f 100644
--- a/Makefile.mingw
+++ b/Makefile.mingw
@@ -19,6 +19,10 @@ RM_REC = $(RM) -r
ZIP = zip -q
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
DEFINES =
LDFLAGS :=
@@ -27,6 +31,10 @@ LIBS = $(SDL_LIBS) -lmingw32 -lwinmm
OBJS = scummvmico.o backends/sdl/sdl-common.o backends/sdl/sdl.o
EXEEXT :=.exe
+#######################################################################
+# Compile options - you can modify these to tweak ScummVM compilation #
+#######################################################################
+
# Enable this if you want ScummVM to dump all scripts it runs.
# This is mainly interesting for developers.
# DEFINES += -DDUMP_SCRIPTS
@@ -39,8 +47,12 @@ LIBS += -lmad
DEFINES += -DUSE_VORBIS
LIBS += -lvorbisfile -lvorbis -logg
-# Uncomment this to activate extended debugging support in Simon
-DEFINES += -DSIMONDEBUG
+# Uncomment this for stricter compile time code verification
+# CFLAGS += -Wshadow -Werror
+
+#######################################################################
+# Misc stuff - you should normally never have to edit this #
+#######################################################################
# Concat DEFINES and INCLUDES to for the CPPFLAGS
CPPFLAGS= $(DEFINES) $(INCLUDES)