old-MTGos-old/kernel.settings
Morten Delenk 054e1bc230 Added the IDT
+Added an additional release setting, however it does not work.
2015-10-11 12:38:56 +02:00

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