old-DasOS/prototypes/os-init/Makefile
2016-06-26 18:48:36 +02:00

14 lines
No EOL
234 B
Makefile

##
# Builds the os initialization kernel
##
include ../config.mk
KERNEL = os-init.ker
LIBS += -lbase -lgcc -lboot
FLAGS += -D IDT_DISPATCH=interrupt_dispatch
all: builddir $(KERNEL)
include ../common.mk
include ../kernel.mk