StupidOS/kernel/Makefile

18 lines
352 B
Makefile
Raw Normal View History

KERNEL = vmstupid
2023-07-13 14:00:20 +00:00
SRCS = boot/head.s \
2023-07-13 14:00:20 +00:00
boot/gdt.s \
boot/idt.s \
boot/isr.s \
boot/tss.s \
kernel.s \
lib/log.s dev/at/serial.s \
2023-07-13 14:00:20 +00:00
i18n/msg_en.s
2023-07-02 14:47:18 +00:00
INCS = sys/multiboot.inc \
sys/i386/cpuid.inc \
sys/i386/mmu.inc \
sys/i386/registers.inc
include $(TOPDIR)/share/mk/stupid.kernel.mk
2023-07-12 09:33:08 +00:00
#include $(TOPDIR)/share/mk/stupid.inc.mk