054e1bc230
+Added an additional release setting, however it does not work.
10 lines
167 B
Text
10 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
|