Commit f8fb9474 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

add -O3 to CFLAGS by default

parent fc66d308
......@@ -32,7 +32,7 @@ LL = gcc
YACC = bison
DEBUG_MODE = 1
ifeq ($(DEBUG_MODE),1)
CFLAGS = -g
CFLAGS = -g -O3
else
CFLAGS = -O3
endif
......
......@@ -40,7 +40,7 @@ LL = gcc
YACC = bison
DEBUG_MODE = 1
ifeq ($(DEBUG_MODE),1)
CFLAGS = -g
CFLAGS = -g -O3
else
CFLAGS = -O3
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