aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-10 08:36:41 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-10 08:36:41 -0800
commitda5a2e2fe68a6f3393053e4cd2eef66331b42872 (patch)
treeed105721309436914d5d1460c3e9728b1b3e14bc /Makefile
parent946c94b6a19d6c10f79eab6c721e5c7702b78758 (diff)
Makefile: Change default flags to -O2.
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8eee3096..6d1f3d82 100644
--- 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.