Commit f8fb9474 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

add -O3 to CFLAGS by default

parent fc66d308
...@@ -32,7 +32,7 @@ LL = gcc ...@@ -32,7 +32,7 @@ LL = gcc
YACC = bison YACC = bison
DEBUG_MODE = 1 DEBUG_MODE = 1
ifeq ($(DEBUG_MODE),1) ifeq ($(DEBUG_MODE),1)
CFLAGS = -g CFLAGS = -g -O3
else else
CFLAGS = -O3 CFLAGS = -O3
endif endif
......
...@@ -40,7 +40,7 @@ LL = gcc ...@@ -40,7 +40,7 @@ LL = gcc
YACC = bison YACC = bison
DEBUG_MODE = 1 DEBUG_MODE = 1
ifeq ($(DEBUG_MODE),1) ifeq ($(DEBUG_MODE),1)
CFLAGS = -g CFLAGS = -g -O3
else else
CFLAGS = -O3 CFLAGS = -O3
endif endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment