]> git.notmuchmail.org Git - notmuch/commitdiff
Makefile: Change default flags to -O2.
authorCarl Worth <cworth@cworth.org>
Tue, 10 Nov 2009 16:36:41 +0000 (08:36 -0800)
committerCarl Worth <cworth@cworth.org>
Tue, 10 Nov 2009 16:36:41 +0000 (08:36 -0800)
We've now verified that it's reliable for the user to override CFLAGS
on the command line, so just make the user do to get a debug build.

Makefile

index 8eee3096a76918f7c71a5ab0a6ceb880ee61e163..6d1f3d82c5d253078e977518001e2e6c13be9f23 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 # Default FLAGS, (can be overriden by user such as "make CFLAGS=-O2")
 WARN_FLAGS=-Wall -Wextra -Wmissing-declarations -Wwrite-strings -Wswitch-enum
-CFLAGS=-g -O0
+CFLAGS=-O2
 
 # Additional flags that we will append to whatever the user set.
 # These aren't intended for the user to manipulate.