add -O3 to CFLAGS by default

This commit is contained in:
Yukihiro Matsumoto
2012-04-30 00:27:25 +09:00
parent fc66d308a1
commit f8fb9474aa
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ LL = gcc
YACC = bison
DEBUG_MODE = 1
ifeq ($(DEBUG_MODE),1)
CFLAGS = -g
CFLAGS = -g -O3
else
CFLAGS = -O3
endif
+1 -1
View File
@@ -40,7 +40,7 @@ LL = gcc
YACC = bison
DEBUG_MODE = 1
ifeq ($(DEBUG_MODE),1)
CFLAGS = -g
CFLAGS = -g -O3
else
CFLAGS = -O3
endif