[Scummvm-cvs-logs] CVS: scummvm Makefile,1.15,1.16

Max Horn fingolfin at users.sourceforge.net
Tue Oct 22 17:21:02 CEST 2002


Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv22132

Modified Files:
	Makefile 
Log Message:
added some comments; conveniently allow to enable -Wshadow and -Werror

Index: Makefile
===================================================================
RCS file: /cvsroot/scummvm/scummvm/Makefile,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Makefile	22 Oct 2002 12:06:54 -0000	1.15
+++ Makefile	23 Oct 2002 00:20:11 -0000	1.16
@@ -13,6 +13,10 @@
 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 :=
@@ -23,6 +27,10 @@
 # Load the build rules & settings for the chosen backend
 -include build.rules
 
+#######################################################################
+# 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
@@ -37,6 +45,14 @@
 
 # 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)





More information about the Scummvm-git-logs mailing list