old-MTGos-old/kernel.settings

11 lines
167 B
Text
Raw Normal View History

MODE = debug
#MODE = release # enables optimization
ifeq ($(MODE),debug)
CFLAGS += -g3 -DDEBUG
CPPFLAGS += -g3 -DDEBUG
else
CFLAGS += -O9
CPPFLAGS += -O9
endif