blob: c807884fc9008ce3163557d84202f89e83034d2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
KERNEL_ARCH_INCLUDE=$(ARCHDIR)/include
KERNEL_ARCH_CFLAGS=-I$(KERNEL_ARCH_INCLUDE)
KERNEL_ARCH_LDFLAGS=
KERNEL_ARCH_LIBS=
KERNEL_ARCH_OBJS=$(ARCHDIR)/boot/boot.o \
$(ARCHDIR)/boot/isr.o \
$(ARCHDIR)/boot/tty.o \
$(ARCHDIR)/boot/gdt.o \
$(ARCHDIR)/boot/idt.o \
$(ARCHDIR)/kernel/serial.o \
|