Working i386 paging and liballoc

This commit is contained in:
2025-12-07 00:53:33 +01:00
commit de5350010b
75 changed files with 6716 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
include build/make.config
srctree := $(PWD)
all:
$(make) -C $(srctree)/kernel srctree=$(srctree) all
clean:
$(make) -C $(srctree)/kernel srctree=$(srctree) clean
include platform/make.$(platform)
.PHONY: all clean