From da5a2e2fe68a6f3393053e4cd2eef66331b42872 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 10 Nov 2009 08:36:41 -0800 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.43.0