11 lines
167 B
Text
11 lines
167 B
Text
|
MODE = debug
|
||
|
#MODE = release # enables optimization
|
||
|
|
||
|
ifeq ($(MODE),debug)
|
||
|
CFLAGS += -g3 -DDEBUG
|
||
|
CPPFLAGS += -g3 -DDEBUG
|
||
|
else
|
||
|
CFLAGS += -O9
|
||
|
CPPFLAGS += -O9
|
||
|
endif
|